KernelProcessor<T>.ProcessingMethod Property

Gets the processing method used for convolution/correlation computation.

Definition

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

Property Value

KernelProcessingMethod
One of the KernelProcessingMethod enumeration values.

Remarks

  • Auto: Automatically selects between direct and FFT based on signal/kernel sizes
  • Direct: Always uses time-domain computation (efficient for small kernels)
  • Fft: Always uses frequency-domain computation (efficient for large kernels)

See Also