You are here: Start » AVL.NET » AVL.DetectLines(AvlNet.Image, float, float, float, float, float, AvlNet.Line2D[], float[], AvlNet.Image, AvlNet.Image)

AVL.DetectLines(AvlNet.Image, float, float, float, float, float, AvlNet.Line2D[], float[], AvlNet.Image, AvlNet.Image)

Finds lines in an image.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax


public static void DetectLines(
	AvlNet.Image inImage,
	float inAngleResolution,
	float inMinAngleDelta,
	float inMinDistance,
	float inMinScore,
	float inEdgeThreshold,
	out AvlNet.Line2D[] outLines,
	out float[] outScores,
	out AvlNet.Image diagGradientMagnitudeImage,
	out AvlNet.Image diagScoreImage
)

Parameters

inImage
Type: AvlNet.Image
Input image
inAngleResolution
Type: System.Single
Resolution of lines' orientation
inMinAngleDelta
Type: System.Single
Minimum angle between two lines
inMinDistance
Type: System.Single
Minimum distance between two lines
inMinScore
Type: System.Single
Minimum matching score
inEdgeThreshold
Type: System.Single
Minimum accepted edge magnitude
outLines
Type: AvlNet.Line2D
Output lines
outScores
Type: System.Single
Output scores
diagGradientMagnitudeImage
Type: AvlNet.Image
Visualized gradients magnitude of an input image
diagScoreImage
Type: AvlNet.Image
Calculated score for each pixel of an input image

See also