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.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
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