drawChessboardCorners function
Mat
drawChessboardCorners(
- InputOutputArray image,
- (int, int) patternSize,
- VecPoint2f corners,
- 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;
}