drawFrameAxes function
        
void
drawFrameAxes(})
        
     
    
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
void drawFrameAxes(
  Mat image,
  Mat cameraMatrix,
  Mat distCoeffs,
  Mat rvec,
  Mat tvec,
  double length, {
  int thickness = 3,
}) {
  return cvRun(
    () => ccalib3d.cv_drawFrameAxes(
      image.ref,
      cameraMatrix.ref,
      distCoeffs.ref,
      rvec.ref,
      tvec.ref,
      length,
      thickness,
      ffi.nullptr,
    ),
  );
}