Click or drag to resize

CvInvokeFindChessboardCornersSB Method

http://www.emgu.com
Finds the positions of internal corners of the chessboard using a sector based approach.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static bool FindChessboardCornersSB(
	IInputArray image,
	Size patternSize,
	IOutputArray corners,
	CalibCbType flags = CalibCbType.Default
)

Parameters

image
Type: Emgu.CVIInputArray
Source chessboard view. It must be an 8-bit grayscale or color image.
patternSize
Type: System.DrawingSize
Number of inner corners per a chessboard row and column ( patternSize = cv::Size(points_per_row,points_per_colum) = cv::Size(columns,rows) ).
corners
Type: Emgu.CVIOutputArray
Output array of detected corners.
flags (Optional)
Type: Emgu.CV.CvEnumCalibCbType
Various operation flags

Return Value

Type: Boolean
True if chessboard corners found
See Also