Open3D icon indicating copy to clipboard operation
Open3D copied to clipboard

multiview registration without odometry edge.

Open songhc8 opened this issue 7 months ago • 1 comments

Checklist

My Question

To whom it may concern,

My camera is mounted on the robot, and hand-eye calibration can obtain the extrinsic parameters between the robot and the camera. Suppose I have a set of scans at different positions, scan1-scanN. For each scan, I can directly read out the camera's pose P_i. the transformation between pose i and j can be got H_i2j=P_j.inverse()*P_i. it also can be calculated from scans_i and scan_j by fpfh algorithm or other methods. i.e. H_est_i2j=fpfh(scan_i,scan_j)

Due to the errors in hand-eye calibration, the scans are not perfectly aligned when transform them into robot's base frame using H_i2j.

I would like to build pose graph to optimize the pose. When constructing the pose graph, should the edges be set to H_i2j, and uncertain set to false? Or should the edges be set to H_est_i2j, and uncertain set to ture.

Thanks for you reply.

songhc8 avatar Jul 17 '24 08:07 songhc8