Back to FabImage Library website
You are here: Start » Function Reference » Computer Vision » HandEyeCalibration Calibration » CalibrateEyeInHand

CalibrateEyeInHand
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | Calibration |
Computes Hand-Eye calibration matrices.
Syntax
C++
C#
void fil::CalibrateEyeInHand ( const ftl::Array<fil::Matrix>& inRotationGripperToBase, const ftl::Array<fil::Matrix>& inTranslationGripperToBase, const ftl::Array<fil::Matrix>& inRotationTargetToCam, const ftl::Array<fil::Matrix>& inTranslationTargetToCam, const fil::HandEyeCalibrationMethod::Type inCalibrationMethod, fil::Matrix& outRotationCamToGripper, fil::Matrix& outTranslationCamToGripper )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inRotationGripperToBase | const Array<Matrix>& | Rotation part extracted from the homogeneous matrix that transforms a point expressed in the gripper frame to the robot base frame. | |
![]() |
inTranslationGripperToBase | const Array<Matrix>& | Translation part extracted from the homogeneous matrix that transforms a point expressed in the gripper frame to the robot base frame. | |
![]() |
inRotationTargetToCam | const Array<Matrix>& | Rotation part extracted from the homogeneous matrix that transforms a point expressed in the target frame to the camera frame. | |
![]() |
inTranslationTargetToCam | const Array<Matrix>& | Translation part extracted from the homogeneous matrix that transforms a point expressed in the target frame to the camera frame | |
![]() |
inCalibrationMethod | const HandEyeCalibrationMethod::Type | Calibration method. | |
![]() |
outRotationCamToGripper | Matrix& | Estimated rotation part extracted from the homogeneous matrix that transforms a point expressed in the camera frame to the gripper frame. | |
![]() |
outTranslationCamToGripper | Matrix& | Estimated translation part extracted from the homogeneous matrix that transforms a point expressed in the camera frame to the gripper frame. |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | All of the arrays should have the same number of measurements. |
DomainError | At least 3 measurements are needed. |