Kernel Processor<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#
A KernelAnchor value specifying the anchor position.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
public KernelAnchor Anchor { get; }Property Value
KernelAnchorA 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.