You are here: Start » AVL.NET » Invoke.DetectCalibrationGrid_Circles
Detects an arbitrary size symmetric circle pattern on the image.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void DetectCalibrationGrid_Circles ( Avl.Image inImage, Optional<Avl.Region> inRoi, float inCircleRadius, float inCircleDetectionThreshold, Avl.Polarity inCirclePolarity, List<Avl.AnnotatedPoint2D> outImageGrid, Diagnostic<Avl.Region> diagCirclesRegion, Diagnostic<List<Avl.Point2D>> diagCircleCandidates )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Avl.Image | Input image. | ||
![]() | inRoi | Atl.Optional<Avl.Region> | Range of pixels to be processed. Default value: atl::NIL. | ||
![]() | inCircleRadius | float | <1.0f, INF> | Circle radius measured in input image pixels. | |
![]() | inCircleDetectionThreshold | float | <0.0f, INF> | 20.0f | Detection threshold (relative to local image patch). Default value: 20.0f. |
![]() | inCirclePolarity | Avl.Polarity | Any | Circle intensity with respect to background. Default value: Any. | |
![]() | outImageGrid | System.Collections.Generic.List<Avl.AnnotatedPoint2D> | Detected grid. | ||
![]() | diagCirclesRegion | Avl.Diagnostic<Avl.Region> | Image after thresholding, this is the circle detector input. | ||
![]() | diagCircleCandidates | Avl.Diagnostic<System.Collections.Generic.List<Avl.Point2D>> | Detected circle centers, before the grid construction step. |