CvInvokeFindCirclesGrid Method (IInputArray, Size, IOutputArray, CalibCgType, Feature2D) |
http://www.emgu.com
Finds centers in the grid of circles
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax public static bool FindCirclesGrid(
IInputArray image,
Size patternSize,
IOutputArray centers,
CalibCgType flags,
Feature2D featureDetector
)
Public Shared Function FindCirclesGrid (
image As IInputArray,
patternSize As Size,
centers As IOutputArray,
flags As CalibCgType,
featureDetector As Feature2D
) As Boolean
public:
static bool FindCirclesGrid(
IInputArray^ image,
Size patternSize,
IOutputArray^ centers,
CalibCgType flags,
Feature2D^ featureDetector
)
static member FindCirclesGrid :
image : IInputArray *
patternSize : Size *
centers : IOutputArray *
flags : CalibCgType *
featureDetector : Feature2D -> bool
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:
BooleanTrue if grid found.
See Also