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.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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