icra20-hand-object-pose icon indicating copy to clipboard operation
icra20-hand-object-pose copied to clipboard

[ICRA 2020] Robust, Occlusion-aware Pose Estimation for Objects Grasped by Adaptive Hands

Results 3 icra20-hand-object-pose issues
Sort by recently updated
recently updated
newest added

Hi, I am interested in your research and it is really great work. Could I ask how to render the whole robot model given different joint configuration, as the picture...

https://github.com/wenbowen123/icra20-hand-object-pose/blob/da59809d862ee7232eb2c3b8751f30acebf87a90/src/perception/src/Hand.cpp#L749 float pitch = rpy(1); // Rotation along y axis pitch = std::min(std::abs(pitch), std::abs(static_cast(M_PI)-pitch)); pitch = std::min(std::abs(pitch), std::abs(static_cast(M_PI)+pitch)); if pitch is -3.14036 at the beginning, then the pitch will be...

https://github.com/wenbowen123/icra20-hand-object-pose/blob/da59809d862ee7232eb2c3b8751f30acebf87a90/src/perception/src/Hand.cpp#L91 please check this line. because pointIdxNKNSearch is the index of the closest point in scene_hand_region_removed_noise, but you pass it to _pso_args.scene_hand_region for accessing the point. Should it be _pso_args.scene_hand_region_removed_noise...