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

FIS.ProfileRidges Method

Finds the high or low peaks in the input profile.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void ProfileRidges
(
	FilNet.Profile inProfile,
	FilNet.Range? inRange,
	bool inCyclic,
	FilNet.RidgeScanParams inRidgeScanParams,
	float inMinDistance,
	float? inMaxDistance,
	FilNet.LocalBlindness? inLocalBlindness,
	IList<FilNet.ProfileRidge> outRidges,
	NullableRef<List<float>> outDistances,
	NullableRef<FilNet.Profile> outResponseProfile
)

Parameters

Name Type Range Default Description
inProfileFilNet.ProfileInput profile.
inRangeFilNet.Range?
inCyclicbool
inRidgeScanParamsFilNet.RidgeScanParamsRidgeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f RidgeWidth: 5 RidgeMargin: 2 MinMagnitude: 5.0f RidgePolarity: Bright )Parameters controlling the ridge extraction process. Default value: RidgeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f RidgeWidth: 5 RidgeMargin: 2 MinMagnitude: 5.0f RidgePolarity: Bright ).
inMinDistancefloat<0.0f, INF>0.0fMinimal distance between consecutive ridges. Default value: 0.0f.
inMaxDistancefloat?<0.0f, INF>Maximal distance between consecutive ridges. Default value: ftl::NIL.
inLocalBlindnessFilNet.LocalBlindness?Defines conditions in which weaker ridges can be detected in the vicinity of stronger ridges. Default value: ftl::NIL.
outRidgesSystem.Collections.Generic.IList<FilNet.ProfileRidge>Found ridges.
outDistancesFilNet.NullableRef<System.Collections.Generic.List<float>>Output distances between consecutive ridges. Can be null to skip this parameter calculation.
outResponseProfileFilNet.NullableRef<FilNet.Profile>Profile of the ridge operator response. Can be null to skip this parameter calculation.

Function Overrides

See also