You are here: Start » FIL.NET » FIS.DetectEdges_AsPaths Method

FIS.DetectEdges_AsPaths Method

Extracts subpixel-precise paths that represent continuous edges.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void DetectEdges_AsPaths
(
	FilNet.Image inImage,
	FilNet.EdgeFilter inEdgeFilter,
	float inStdDevX,
	float inEdgeThreshold,
	float inEdgeHysteresis,
	float inMaxJoiningAngle,
	float inJoiningDistanceBalance,
	float inMinEdgeLength,
	IList<FilNet.Path> outEdges
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageImage from which edges will be extracted.
inEdgeFilterFilNet.EdgeFilterType of edge filter used for computing gradients.
inStdDevXfloat<0.0f, INF>2.0fAmount of horizontal smoothing used by the edge filter. Default value: 2.0f.
inEdgeThresholdfloat<0.0f, INF>15.0fSufficient edge strength; edges of that strength will always be detected. Default value: 15.0f.
inEdgeHysteresisfloat<0.0f, INF>5.0fValue by which the edge threshold is decreased for edge points neighboring with sufficiently strong edges. Default value: 5.0f.
inMaxJoiningAnglefloat<0.0f, 180.0f>30.0fMaximal allowed angle between edges being joined. Default value: 30.0f.
inJoiningDistanceBalancefloat<0.0f, 1.0f>0.0fDetermines how important distance between edges is according to their angle difference. Default value: 0.0f.
inMinEdgeLengthfloat<0.0f, INF>0.0fMinimal length of an edge. Default value: 0.0f.
outEdgesSystem.Collections.Generic.IList<FilNet.Path>Paths representing found edges.

Function Overrides

See also