You are here: Start » FIL.NET » FIS.DetectPaths Method

FIS.DetectPaths Method

Finds a specified shape in an image using Hough Transform.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void DetectPaths
(
	FilNet.Image inImage,
	NullableRef<FilNet.Region> inRoi,
	FilNet.Path inPath,
	float inMinScore,
	float inEdgeThreshold,
	IList<FilNet.Path> outPaths,
	IList<float> outScores,
	FilNet.Image diagGradientMagnitudeImage,
	FilNet.Image diagScoreImage
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inRoiFilNet.NullableRef<FilNet.Region>Input region of interest. Default value: ftl::NIL.
inPathFilNet.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.IList<FilNet.Path>Output paths.
outScoresSystem.Collections.Generic.IList<float>Output scores.
diagGradientMagnitudeImageFilNet.ImageVisualized gradients magnitude of an input image.
diagScoreImageFilNet.ImageCalculated score for each pixel of an input image.

Function Overrides

See also