You are here: Start » DLInvoke.DL_LocatePoints
Executes a Locate Points model on a single input image.
Namespace: | Fil |
---|---|
Assembly: | FilNet.DL.Cpu.dll |
Syntax
C++
C#
public static void DL_LocatePoints ( Fil.Image inImage, Optional<Fil.Region> inRoi, Fil.LocatePointsModelId inModelId, float inMinDetectionScore, Optional<float> inMinDistanceRatio, bool inOverlap, List<Fil.Location> outLocations, List<int> outClassIds, List<string> outClassNames, List<float> outScores )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Input image. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Limits the area where points may be located. Default value: ftl::NIL. | ||
![]() | inModelId | Fil.LocatePointsModelId | Identifier of a Locate Points model. | ||
![]() | inMinDetectionScore | float | Sets a minimum required score for a point to be returned. Default value: 0.5f. | ||
![]() | inMinDistanceRatio | Ftl.Optional<float> | Sets a minimum distance between the returned points defined as a portion of the Feature Size. If not set, a value determined during the training is used. Default value: ftl::NIL. | ||
![]() | inOverlap | bool | Cuts the image into more overlapping tiles, which improves results quality at the expense of extended execution time. Default value: True. | ||
![]() | outLocations | System.Collections.Generic.List<Fil.Location> | Returns location of the found points. | ||
![]() | outClassIds | System.Collections.Generic.List<int> | Returns ids of the found point classes. | ||
![]() | outClassNames | System.Collections.Generic.List<string> | Returns names of the found point classes. | ||
![]() | outScores | System.Collections.Generic.List<float> | Returns scores of the found points. |