drawChessboardCorners function

Mat drawChessboardCorners(
  1. InputOutputArray image,
  2. (int, int) patternSize,
  3. VecPoint2f corners,
  4. bool patternWasFound,
)

Implementation

Mat drawChessboardCorners(
  InputOutputArray image,
  (int, int) patternSize,
  VecPoint2f corners,
  bool patternWasFound,
) {
  cvRun(
    () => ccalib3d.cv_drawChessboardCorners(
      image.ref,
      patternSize.cvd.ref,
      corners.ref,
      patternWasFound,
      ffi.nullptr,
    ),
  );
  return image;
}