Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
wenbowen123 committed Jun 4, 2022
1 parent 4be4164 commit dc656c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ We provide docker environment and setup is as easy as below a few lines.
cd docker && bash run_container.sh
cd /home/catgrasp && bash build.sh
```
Now the environment is ready to run training or testing.
Now the environment is ready to run training or testing. Later you can re-enter the lauched docker environment without re-compilation by:
```
docker exec -it catgrasp bash
```


# Data
Expand Down
2 changes: 1 addition & 1 deletion make_canonical.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def compute_canonical_model():
if obj_file==other_file:
continue
other_cloud = copy.deepcopy(clouds[other_file])
other_cloud = (transforms_to_nocs[other_file]@to_homo(other_cloud).T)[:,:3]
other_cloud = (transforms_to_nocs[other_file]@to_homo(other_cloud).T).T[:,:3]
cd = chamfer_distance_between_clouds_mutual(cloud,other_cloud)
dists.append(cd)
avg_dist = np.concatenate(dists,axis=0).reshape(-1).mean()
Expand Down

0 comments on commit dc656c0

Please sign in to comment.