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

Invoke.ConvolveProfile

Applies a user-defined convolution to a profile.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inProfileAvl.ProfileProfile to be processed.
inRangeAtl.Optional<Avl.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.
inMaskOriginAtl.Optional<int>Index of the kernel mask element that will be aligned against the profile values. Default value: atl::NIL.
outProfileAvl.ProfileOutput profile.

See also