kaixin-bai

Results 15 comments of kaixin-bai

i also have this problem sometimes, don't know why.

> Yes, i already did that. ```bash # this is not necessary if you do not build python binding export PYTHONPATH="$PYTHONPATH:/home/kb/Desktop/pose_estimation/Misc3D/build/lib/python" # this is necessary for c++ to find the...

I have simular problems, but i'm not sure if the reason is the same. The code below takes about 1 second, the function 'remove_zeros' is to delete the [0,0,0] in...

in show_pose_results.m add `opt.model_path = '/data/Ycb_Video_Dataset/models';` that should work

I followed the README of BlendMask, but cannot get the right result. ![Screenshot_2021-04-04_18-05-54](https://user-images.githubusercontent.com/38804949/113514717-811d7800-9570-11eb-9483-2467f4f73427.png)

Problem solved by changing `self.const_val["indexed_vertex_id"] = vertex_id[anchor_padding_mask == 1]` to `self.const_val["indexed_vertex_id"] = vertex_id.to('cpu')[anchor_padding_mask.to('cpu') == 1]` on `geo_optimizer.py line 141`