KernelProcessor<T>.Anchor Property

Gets the kernel anchor configuration that determines the alignment between kernel and signal.

Definition

Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
C#
public KernelAnchor Anchor { get; }

Property Value

KernelAnchor
A KernelAnchor value specifying the anchor position.

Remarks

The anchor determines which kernel element aligns with the current signal position during convolution/correlation. For example, with a kernel [a, b, c] and anchor at index 1 (centered), the output at position n computes: x[n-1]*a + x[n]*b + x[n+1]*c.

See Also