You are here: Start » FIL.NET » Invoke.DetectCalibrationGrid_Circles

Invoke.DetectCalibrationGrid_Circles

Detects an arbitrary size symmetric circle pattern on the image.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void DetectCalibrationGrid_Circles
(
	Fil.Image inImage,
	Optional<Fil.Region> inRoi,
	float inCircleRadius,
	float inCircleDetectionThreshold,
	Fil.Polarity inCirclePolarity,
	List<Fil.AnnotatedPoint2D> outImageGrid,
	Diagnostic<Fil.Region> diagCirclesRegion,
	Diagnostic<List<Fil.Point2D>> diagCircleCandidates
)

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inRoiFtl.Optional<Fil.Region>Range of pixels to be processed. Default value: ftl::NIL.
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.
inCirclePolarityFil.PolarityAnyCircle intensity with respect to background. Default value: Any.
outImageGridSystem.Collections.Generic.List<Fil.AnnotatedPoint2D>Detected grid.
diagCirclesRegionFil.Diagnostic<Fil.Region>Image after thresholding, this is the circle detector input.
diagCircleCandidatesFil.Diagnostic<System.Collections.Generic.List<Fil.Point2D>>Detected circle centers, before the grid construction step.

See also