DetectCalibrationGrid_Circles
Detects an arbitrary size symmetric circle pattern on the image.
Syntax
C++
C#
Python
def DetectCalibrationGrid_Circles( inImage: Image, inCircleRadius: float, /, *, inRoi: Region | None = None, inCircleDetectionThreshold: float = 20.0, inCirclePolarity: Polarity = Polarity.Any, diagCirclesRegion: Region | None = None ) -> ( outImageGrid: list[AnnotatedPoint2D], diagCircleCandidates: list[Point2D] )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inImage | Image | Input image | ||
![]() |
inRoi | Region | None | None | Range of pixels to be processed | |
![]() |
inCircleRadius | float | 1.0 - ![]() |
Circle radius measured in input image pixels. | |
![]() |
inCircleDetectionThreshold | float | 0.0 - ![]() |
20.0 | Detection threshold (relative to local image patch). |
![]() |
inCirclePolarity | Polarity | Polarity.Any | Circle intensity with respect to background. | |
![]() |
outImageGrid | list[AnnotatedPoint2D] | Detected grid | ||
![]() |
diagCirclesRegion | Region | None | None | Image after thresholding, this is the circle detector input. | |
![]() |
diagCircleCandidates | list[Point2D] | Detected circle centers, before the grid construction step. |




