You are here: Start » FIL.NET » Invoke.ProfileEdges

Invoke.ProfileEdges

Finds the locations at which the profile values raise or fall quickly.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ProfileEdges
(
	Fil.Profile inProfile,
	Optional<Fil.Range> inRange,
	bool inCyclic,
	Fil.EdgeScanParams inEdgeScanParams,
	float inMinDistance,
	Optional<float> inMaxDistance,
	Optional<Fil.LocalBlindness> inLocalBlindness,
	List<Fil.ProfileEdge> outEdges,
	Optional<List<float>> outDistances,
	Optional<Fil.Profile> outResponseProfile
)

Parameters

Name Type Range Default Description
inProfileFil.ProfileInput profile.
inRangeFtl.Optional<Fil.Range>
inCyclicbool
inEdgeScanParamsFil.EdgeScanParamsEdgeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f MinMagnitude: 5.0f EdgeTransition: BrightToDark )Parameters controlling the edge extraction process. Default value: EdgeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f MinMagnitude: 5.0f EdgeTransition: BrightToDark ).
inMinDistancefloat<0.0f, INF>0.0fMinimal distance between consecutive edges. Default value: 0.0f.
inMaxDistanceFtl.Optional<float><0.0f, INF>Maximal distance between consecutive edges. Default value: ftl::NIL.
inLocalBlindnessFtl.Optional<Fil.LocalBlindness>Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: ftl::NIL.
outEdgesSystem.Collections.Generic.List<Fil.ProfileEdge>Found edges.
outDistancesFtl.Optional<System.Collections.Generic.List<float>>Output distances between consecutive edges.
outResponseProfileFtl.Optional<Fil.Profile>Profile of the edge (derivative) operator response.

See also