Two 3D point cloud transformation matrix
问题 I'm trying to guess wich is the rigid transformation matrix between two 3D points clouds. The two points clouds are those ones: keypoints from the kinect (kinect_keypoints). keypoints from a 3D object (box) (object_keypoints). I have tried two options: [1]. Implementation of the algorithm to find rigid transformation. **1.Calculate the centroid of each point cloud.** **2.Center the points according to the centroid.** **3. Calculate the covariance matrix** cvSVD( &_H, _W, _U, _V, CV_SVD_U_T );