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

AVS.DetectLines Method

Finds lines in an image using Hough Transform.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void DetectLines
(
	AvlNet.Image inImage,
	float inAngleResolution,
	float inMinAngleDelta,
	float inMinDistance,
	float inMinScore,
	float inEdgeThreshold,
	IList<AvlNet.Line2D> outLines,
	IList<float> outScores
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
inAngleResolutionfloat<0.1f, 180.0f>1.0fResolution of lines' orientation. Default value: 1.0f.
inMinAngleDeltafloat<0.0f, INF>20.0fMinimum angle between two lines. Default value: 20.0f.
inMinDistancefloat<0.0f, INF>20.0fMinimum distance between two lines. Default value: 20.0f.
inMinScorefloat<0.0f, INF>20.0fMinimum matching score. Default value: 20.0f.
inEdgeThresholdfloat10.0fMinimum accepted edge magnitude. Default value: 10.0f.
outLinesSystem.Collections.Generic.IList<AvlNet.Line2D>Output lines.
outScoresSystem.Collections.Generic.IList<float>Output scores.

Function Overrides

See also