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

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
inImageFil.ImageInput image.
inRoiFtl.Optional<Fil.Region>Input region of interest. Default value: ftl::NIL.
inPathFil.PathInput path.
inMinScorefloat<0.0f, INF>20.0fMinimum matching score. Default value: 20.0f.
inEdgeThresholdfloat10.0fMinimum accepted edge magnitude. Default value: 10.0f.
outPathsSystem.Collections.Generic.List<Fil.Path>Output paths.
outScoresSystem.Collections.Generic.List<float>Output scores.
diagGradientMagnitudeImageFil.Diagnostic<Fil.Image>Visualized gradients magnitude of an input image.
diagScoreImageFil.Diagnostic<Fil.Image>Calculated score for each pixel of an input image.

See also