drawFrameAxesAsync function
Draw axes of the world/object coordinate system from pose estimation.
For further details, please see: https://docs.opencv.org/4.11.0/d9/d0c/group__calib3d.html#gab3ab7bb2bdfe7d5d9745bb92d13f9564
Implementation
Future<void> drawFrameAxesAsync(
Mat image,
Mat cameraMatrix,
Mat distCoeffs,
Mat rvec,
Mat tvec,
double length, {
int thickness = 3,
}) async {
return cvRunAsync0(
(callback) => ccalib3d.cv_drawFrameAxes(
image.ref,
cameraMatrix.ref,
distCoeffs.ref,
rvec.ref,
tvec.ref,
length,
thickness,
callback,
),
(c) => c.complete(),
);
}