Click or drag to resize

CvInvokeCalibrateHandEye Method

http://www.emgu.com
Computes Hand-Eye calibration

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void CalibrateHandEye(
	IInputArrayOfArrays rGripper2base,
	IInputArrayOfArrays tGripper2base,
	IInputArrayOfArrays rTarget2cam,
	IInputArrayOfArrays tTarget2cam,
	IOutputArray rCam2gripper,
	IOutputArray tCam2gripper,
	HandEyeCalibrationMethod method
)

Parameters

rGripper2base
Type: Emgu.CVIInputArrayOfArrays
Rotation part extracted from the homogeneous matrix that transforms a point expressed in the gripper frame to the robot base frame. This is a vector (vector<Mat>) that contains the rotation matrices for all the transformations from gripper frame to robot base frame.
tGripper2base
Type: Emgu.CVIInputArrayOfArrays
Translation part extracted from the homogeneous matrix that transforms a point expressed in the gripper frame to the robot base frame. This is a vector (vector<Mat>) that contains the translation vectors for all the transformations from gripper frame to robot base frame.
rTarget2cam
Type: Emgu.CVIInputArrayOfArrays
Rotation part extracted from the homogeneous matrix that transforms a point expressed in the target frame to the camera frame. This is a vector (vector<Mat>) that contains the rotation matrices for all the transformations from calibration target frame to camera frame.
tTarget2cam
Type: Emgu.CVIInputArrayOfArrays
Rotation part extracted from the homogeneous matrix that transforms a point expressed in the target frame to the camera frame. This is a vector (vector<Mat>) that contains the translation vectors for all the transformations from calibration target frame to camera frame.
rCam2gripper
Type: Emgu.CVIOutputArray
Estimated rotation part extracted from the homogeneous matrix that transforms a point expressed in the camera frame to the gripper frame.
tCam2gripper
Type: Emgu.CVIOutputArray
Estimated translation part extracted from the homogeneous matrix that transforms a point expressed in the camera frame to the gripper frame.
method
Type: Emgu.CV.CvEnumHandEyeCalibrationMethod
One of the implemented Hand-Eye calibration method
See Also