You are here: Start » AVL.NET » AVS.DetectPaths Method

AVS.DetectPaths Method

Finds a specified shape in an image using Hough Transform.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
inRoiAvlNet.NullableRef<AvlNet.Region>Input region of interest. Default value: atl::NIL.
inPathAvlNet.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<AvlNet.Path>Output paths.
outScoresSystem.Collections.Generic.IList<float>Output scores.
diagGradientMagnitudeImageAvlNet.ImageVisualized gradients magnitude of an input image.
diagScoreImageAvlNet.ImageCalculated score for each pixel of an input image.

Function Overrides

See also