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

FIS.DetectRidges_AsPaths Method

Extracts subpixel-precise paths that represent bright or dark thin lines.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void DetectRidges_AsPaths
(
	FilNet.Image inImage,
	NullableRef<FilNet.Region> inRoi,
	float inStdDevX,
	float? inStdDevY,
	float inRidgeThreshold,
	float inRidgeHysteresis,
	FilNet.Polarity inPolarity,
	IList<FilNet.Path> outRidges
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inRoiFilNet.NullableRef<FilNet.Region>Region of interest. Default value: ftl::NIL.
inStdDevXfloat<0.0f, INF>3.0fSmoothing standard deviation (horizontal). Default value: 3.0f.
inStdDevYfloat?<0.0f, INF>Smoothing standard deviation (vertical, or Auto = horizontal). Default value: ftl::NIL.
inRidgeThresholdfloat<0.0f, INF>5.0fSufficient ridge strength; ridges of that strength will always be detected. Default value: 5.0f.
inRidgeHysteresisfloat<0.0f, INF>4.0fValue by which the ridge threshold is decreased for ridge points neighboring with sufficiently strong edges. Default value: 4.0f.
inPolarityFilNet.Polarity
outRidgesSystem.Collections.Generic.IList<FilNet.Path>

Function Overrides

See also