Detect checkerboard pattern in image
[
detects a black and white checkerboard of size greater than 4-by-4 squares in a
2-D truecolor or grayscale image. The function returns the detected points and
dimensions of the checkerboard.imagePoints
,boardSize
]
= detectCheckerboardPoints(I
)
[
detects a checkerboard pattern in a set of input images, provided as an array of
file names.imagePoints
,boardSize
,imagesUsed
]
= detectCheckerboardPoints(imageFileNames
)
[
detects a checkerboard pattern in a set of input images, provided as an array of
grayscale or truecolor images.imagePoints
,boardSize
,imagesUsed
]
= detectCheckerboardPoints(images
)
[
detects
a checkerboard pattern in stereo pairs of images, provided as cell
arrays of file names.imagePoints
,boardSize
,pairsUsed
]
= detectCheckerboardPoints(imageFileNames1
,imageFileNames2
)
[
detects a checkerboard pattern in stereo pairs of images, provided as arrays of
grayscale or truecolor images.imagePoints
,boardSize
,pairsUsed
]
= detectCheckerboardPoints(images1
,images2
)
[
sets the corner metric threshold, specified as a nonnegative scalar. When the
image is noisy or highly textured, increase this value to reduce the number of
false corners.imagePoints
,boardSize
,pairsUsed
]
= detectCheckerboardPoints(___,'MinCornerMetric',0.15)
[1] Geiger, A., F. Moosmann, O. Car, and B. Schuster. "Automatic Camera and Range Sensor Calibration using a Single Shot," International Conference on Robotics and Automation (ICRA), St. Paul, USA, May 2012.
Camera Calibrator | cameraParameters
| estimateCameraParameters
| generateCheckerboardPoints
| stereoParameters