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

Invoke.ConvolveProfile

Applies a user-defined convolution to a profile.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ConvolveProfile
(
	Fil.Profile inProfile,
	Optional<Fil.Range> inRange,
	List<float> inMask,
	bool inNormalizeMaskValues,
	Optional<int> inMaskOrigin,
	Fil.Profile outProfile
)

Parameters

Name Type Range Default Description
inProfileFil.ProfileProfile to be processed.
inRangeFtl.Optional<Fil.Range>
inMaskSystem.Collections.Generic.List<float>Convolution kernel mask that will be applied to the profile.
inNormalizeMaskValuesboolFalseIf set to true, the kernel mask will be normalized so that its values sum up to one. Default value: False.
inMaskOriginFtl.Optional<int>Index of the kernel mask element that will be aligned against the profile values. Default value: ftl::NIL.
outProfileFil.ProfileOutput profile.

See also