You are here: Start » FIL.NET » Invoke.DetectPaths
Finds a specified shape in an image using Hough Transform.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void DetectPaths ( Fil.Image inImage, Optional<Fil.Region> inRoi, Fil.Path inPath, float inMinScore, float inEdgeThreshold, List<Fil.Path> outPaths, List<float> outScores, Diagnostic<Fil.Image> diagGradientMagnitudeImage, Diagnostic<Fil.Image> diagScoreImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Input image. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Input region of interest. Default value: ftl::NIL. | ||
![]() | inPath | Fil.Path | Input path. | ||
![]() | inMinScore | float | <0.0f, INF> | 20.0f | Minimum matching score. Default value: 20.0f. |
![]() | inEdgeThreshold | float | 10.0f | Minimum accepted edge magnitude. Default value: 10.0f. | |
![]() | outPaths | System.Collections.Generic.List<Fil.Path> | Output paths. | ||
![]() | outScores | System.Collections.Generic.List<float> | Output scores. | ||
![]() | diagGradientMagnitudeImage | Fil.Diagnostic<Fil.Image> | Visualized gradients magnitude of an input image. | ||
![]() | diagScoreImage | Fil.Diagnostic<Fil.Image> | Calculated score for each pixel of an input image. |