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

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

Finds lines in an image.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax


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

Parameters

inImage
Type: AvlNet.Image
Input image
inRoi
Type: AvlNet.Region
Input region of interest, or null.
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

See also