attempts to determine whether the input image is a view of the chessboard pattern and locate internal chessboard corners

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static bool FindChessboardCorners(
	Image<Gray, byte> image,
	Size patternSize,
	CALIB_CB_TYPE flags,
	out PointF[] corners
)
Public Shared Function FindChessboardCorners ( _
	image As Image(Of Gray, Byte), _
	patternSize As Size, _
	flags As CALIB_CB_TYPE, _
	<OutAttribute> ByRef corners As PointF() _
) As Boolean
public:
static bool FindChessboardCorners(
	Image<Gray, unsigned char>^ image, 
	Size patternSize, 
	CALIB_CB_TYPE flags, 
	[OutAttribute] array<PointF>^% corners
)

Parameters

image
Image<(Of <(<'Gray, Byte>)>)>
Source chessboard view
patternSize
Size
The number of inner corners per chessboard row and column
flags
CALIB_CB_TYPE
Various operation flags
corners
array<PointF>[]()[][]%
The corners detected

Return Value

If the chess board pattern is found

See Also