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

Invoke.DetectPaths

Finds a specified shape in an image using Hough Transform.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void DetectPaths
(
	Avl.Image inImage,
	Optional<Avl.Region> inRoi,
	Avl.Path inPath,
	float inMinScore,
	float inEdgeThreshold,
	List<Avl.Path> outPaths,
	List<float> outScores,
	Diagnostic<Avl.Image> diagGradientMagnitudeImage,
	Diagnostic<Avl.Image> diagScoreImage
)

Parameters

Name Type Range Default Description
inImageAvl.ImageInput image.
inRoiAtl.Optional<Avl.Region>Input region of interest. Default value: atl::NIL.
inPathAvl.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<Avl.Path>Output paths.
outScoresSystem.Collections.Generic.List<float>Output scores.
diagGradientMagnitudeImageAvl.Diagnostic<Avl.Image>Visualized gradients magnitude of an input image.
diagScoreImageAvl.Diagnostic<Avl.Image>Calculated score for each pixel of an input image.

See also