You are here: Start » FIL.NET » Invoke.LocateSinglePointPattern
Finds an occurrence of the pattern in the input points.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void LocateSinglePointPattern ( List<Fil.Point2D> inPoints, Optional<List<int>> inPointLabels, List<Fil.Point2D> inPattern, Optional<List<int>> inPatternLabels, Optional<Fil.Rectangle2D> inReferenceFrame, bool inAllowRotation, float inMinAngle, float inMaxAngle, bool inAllowScale, float inMinScale, float inMaxScale, float inTilingFactor, float inMinInitialScore, float inMaxDeviation, float inMinScore, Conditional<Fil.Rectangle2D> outObject, Conditional<List<Fil.Point2D>> outAlignedPattern, Conditional<Fil.CoordinateSystem2D> outAlignment, Conditional<List<Fil.Segment2D>> outPatternSkeleton )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoints | System.Collections.Generic.List<Fil.Point2D> | Input points. | ||
![]() | inPointLabels | Ftl.Optional<System.Collections.Generic.List<int>> | Categories that the input points belong to. Default value: ftl::NIL. | ||
![]() | inPattern | System.Collections.Generic.List<Fil.Point2D> | Point pattern to be found. | ||
![]() | inPatternLabels | Ftl.Optional<System.Collections.Generic.List<int>> | Categories that the pattern points belong to. Default value: ftl::NIL. | ||
![]() | inReferenceFrame | Ftl.Optional<Fil.Rectangle2D> | Exact position of the model object associated with the pattern in the image. Default value: ftl::NIL. | ||
![]() | inAllowRotation | bool | True | Flag indicating whether rotation is allowed as a part of output alignment. Default value: True. | |
![]() | inMinAngle | float | -180.0f | Start of range of possible rotations. Default value: -180.0f. | |
![]() | inMaxAngle | float | 180.0f | End of range of possible rotations. Default value: 180.0f. | |
![]() | inAllowScale | bool | False | Flag indicating whether scale is allowed as a part of output alignment. Default value: False. | |
![]() | inMinScale | float | <0.0f, INF> | 0.8f | Start of range of possible scales. Default value: 0.8f. |
![]() | inMaxScale | float | <0.0f, INF> | 1.25f | End of range of possible scales. Default value: 1.25f. |
![]() | inTilingFactor | float | <0.000001f, 1.0f> | 0.2f | Defines relative size of the square tile on the plane during initial detection. Default value: 0.2f. |
![]() | inMinInitialScore | float | <0.0f, 1.0f> | 0.75f | The minimum proportion of points correctly matched during initial detection. Default value: 0.75f. |
![]() | inMaxDeviation | float | <0.0f, INF> | 5.0f | Maximal distance between two points considered matched. Default value: 5.0f. |
![]() | inMinScore | float | <0.0f, 1.0f> | 0.75f | The minimum proportion of points correctly matched. Default value: 0.75f. |
![]() | outObject | Ftl.Conditional<Fil.Rectangle2D> | Bounding rectangle of the found pattern occurrence. | ||
![]() | outAlignedPattern | Ftl.Conditional<System.Collections.Generic.List<Fil.Point2D>> | The aligned input pattern points. | ||
![]() | outAlignment | Ftl.Conditional<Fil.CoordinateSystem2D> | The transform that align the input pattern to the input points. | ||
![]() | outPatternSkeleton | Ftl.Conditional<System.Collections.Generic.List<Fil.Segment2D>> | The skeleton of the aligned input pattern points. |