KernelProcessor<T>.Padding Property

Gets the signal padding mode used for boundary extension.

Definition

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

Property Value

SignalPadding
One of the SignalPadding enumeration values.

Remarks

Padding determines how the signal is extended beyond its boundaries:

  • Zero: Pad with zeros (equivalent to NumPy/SciPy 'constant' mode with fill_value=0)
  • Reflect: Mirror reflection at boundaries (equivalent to SciPy 'reflect' mode)
  • Replicate: Replicate edge values (equivalent to SciPy 'edge' or OpenCV 'replicate')
  • Wrap: Periodic extension (equivalent to SciPy 'wrap')

See Also