You are here: Start » FIL.NET » Invoke.DetectCorners_Foerstner
Detects corners using the Foerstner algorithm.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void DetectCorners_Foerstner ( Fil.Image inMonoImage, Optional<Fil.Region> inRoi, float inCornerQuality, float inStrengthThreshold, int inLocalness, List<Fil.Point2D> outPoints, Diagnostic<Fil.Image> diagRoundnessImage, Diagnostic<Fil.Image> diagStrengthImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inMonoImage | Fil.Image | Input image. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Range of pixels to be processed. Default value: ftl::NIL. | ||
![]() | inCornerQuality | float | <0.0f, 1.0f> | 0.8f | Threshold on regularity of the corner. Default value: 0.8f. |
![]() | inStrengthThreshold | float | <0.0f, 255.0f> | 50.0f | Threshold on contrast of gradients forming the corner. Default value: 50.0f. |
![]() | inLocalness | int | <1, 11> | 3 | How big-scaled the corners should be. Default value: 3. |
![]() | outPoints | System.Collections.Generic.List<Fil.Point2D> | Found corner points. | ||
![]() | diagRoundnessImage | Fil.Diagnostic<Fil.Image> | Calculated roundness for each input pixel. | ||
![]() | diagStrengthImage | Fil.Diagnostic<Fil.Image> | Calculated strength for each pixel. |