File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,10 @@ We provide docker environment and setup is as easy as below a few lines.
5959 cd docker && bash run_container.sh
6060 cd /home/catgrasp && bash build.sh
6161 ```
62- Now the environment is ready to run training or testing.
62+ Now the environment is ready to run training or testing. Later you can re-enter the lauched docker environment without re-compilation by:
63+ ```
64+ docker exec -it catgrasp bash
65+ ```
6366
6467
6568# Data
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ def compute_canonical_model():
8484 if obj_file == other_file :
8585 continue
8686 other_cloud = copy .deepcopy (clouds [other_file ])
87- other_cloud = (transforms_to_nocs [other_file ]@to_homo (other_cloud ).T )[:,:3 ]
87+ other_cloud = (transforms_to_nocs [other_file ]@to_homo (other_cloud ).T ). T [:,:3 ]
8888 cd = chamfer_distance_between_clouds_mutual (cloud ,other_cloud )
8989 dists .append (cd )
9090 avg_dist = np .concatenate (dists ,axis = 0 ).reshape (- 1 ).mean ()
You can’t perform that action at this time.
0 commit comments