Skip to content

Commit dc656c0

Browse files
committed
update readme
1 parent 4be4164 commit dc656c0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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

make_canonical.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)