You are here: Start » AVL.NET » Function Reference » Computer Vision » Camera Calibration » AVL.DetectCalibrationGrid_Circles

AVL.DetectCalibrationGrid_Circles

Detects an arbitrary size symmetric circle pattern on the image.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void DetectCalibrationGrid_Circles
(
	AvlNet.Image inImage,
	float inCircleRadius,
	float inCircleDetectionThreshold,
	AvlNet.Polarity inCirclePolarity,
	IList<AvlNet.AnnotatedPoint2D> outImageGrid
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
inCircleRadiusfloat<1.0f, INF>Circle radius measured in input image pixels.
inCircleDetectionThresholdfloat<0.0f, INF>20.0fDetection threshold (relative to local image patch). Default value: 20.0f.
inCirclePolarityAvlNet.PolarityAnyCircle intensity with respect to background. Default value: Any.
outImageGridSystem.Collections.Generic.IList<AvlNet.AnnotatedPoint2D>Detected grid.

Examples

Input image for DetectCalibrationGrid_Circles executed with inCircleRadius = 5

Detected calibration points

Remarks

The circle pattern must be a rectangular grid, with equal spacing in both dimensions.

Errors

List of possible exceptions:

Error type Description
DomainError Not supported inImage pixel format.
DomainError Region of interest exceeds an input image.
DomainError Not supported inImage pixel format in DetectCalibrationGrid_Circles. Supported formats: UInt8.

Function Overrides

See also