Click or drag to resize

CvInvokeFindCirclesGrid Method (IInputArray, Size, IOutputArray, CalibCgType, Feature2D)

http://www.emgu.com
Finds centers in the grid of circles

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 FindCirclesGrid(
	IInputArray image,
	Size patternSize,
	IOutputArray centers,
	CalibCgType flags,
	Feature2D featureDetector
)

Parameters

image
Type: Emgu.CVIInputArray
Source chessboard view
patternSize
Type: System.DrawingSize
The number of inner circle per chessboard row and column
centers
Type: Emgu.CVIOutputArray
output array of detected centers.
flags
Type: Emgu.CV.CvEnumCalibCgType
Various operation flags
featureDetector
Type: Emgu.CV.Features2DFeature2D
The feature detector. Use a SimpleBlobDetector for default

Return Value

Type: Boolean
True if grid found.
See Also