Class Delay
Represents an operator that delays the input signal by the specified number of samples.
public class Delay : Transform<Mat, Mat>
- Inheritance
-
Delay
- Inherited Members
Properties
Count
Gets or sets the number of samples by which to delay the input signal.
public int Count { get; set; }
Property Value
Remarks
To avoid changing the number of buffers in the sequence, the beginning of the signal will be padded with zeros.
Methods
Process(IObservable<Mat>)
Delays the input signal by the specified number of samples.
public override IObservable<Mat> Process(IObservable<Mat> source)
Parameters
source
IObservable<Mat>A sequence of Mat objects representing the waveform of the signal to delay.
Returns
- IObservable<Mat>
A sequence of Mat objects representing the waveform of the delayed signal.