Hello,
I'm working on the stereoCamera. what I've done is almost here (following the example)
CvInvoke.StereoCalibrate(corners_object_Points, corners_points_Left, corners_points_Right, cameraMatrix_left, distCoeff_left, cameraMatrix_right, distCoeff_right, left.Size, ext_param.RotationVector.RotationMatrix, ext_param.TranslationVector, essential, fundamental, Emgu.CV.CvEnum.CalibType.FixPrincipalPoint, new MCvTermCriteria(30, 0.01));
CvInvoke.StereoRectify(cameraMatrix_left, distCoeff_left, cameraMatrix_right, distCoeff_right, left.Size, ext_param.RotationVector.RotationMatrix, ext_param.TranslationVector, R1, R2, P1, P2, Q, StereoRectifyType.Default, 0, left.Size, ref rect_left, ref rect_right);
I would like to show the two images rectified in order to see if the process of calibration and rectification it was good or not.
Is there some who can help me?
↧