You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my project, the 3D camera is on the top floor , and i use this handeye_calib_camodocal project to finish my handeye calibration。But the error is large, and result is clearly an error,so i doubt the CamtoTag is wrong . I have get 3D Checkerboard corner points(x,y,z) ,and here is the codes i used to compute CamtoTag :
In my project, the 3D camera is on the top floor , and i use this handeye_calib_camodocal project to finish my handeye calibration。But the error is large, and result is clearly an error,so i doubt the CamtoTag is wrong . I have get 3D Checkerboard corner points(x,y,z) ,and here is the codes i used to compute CamtoTag :
Eigen::Matrix4f getPlanePose(pcl::PointCloudpcl::PointXYZ::Ptr board_corner_cloud)
{
pcl::SACSegmentationpcl::PointXYZ seg;
seg.setOptimizeCoefficients(true);
seg.setModelType(pcl::SACMODEL_PLANE);
seg.setMethodType(pcl::SAC_RANSAC);
seg.setDistanceThreshold(0.1);
}
The text was updated successfully, but these errors were encountered: