Class Skip
Represents an operator that skips a specified number of samples in the input signal.
public class Skip : Combinator<Mat, Mat>
- Inheritance
-
Skip
- Inherited Members
Properties
Count
Gets or sets the number of samples to skip.
public int Count { get; set; }
Property Value
Methods
Process(IObservable<Mat>)
Skips a specified number of samples in the input signal.
public override IObservable<Mat> Process(IObservable<Mat> source)
Parameters
source
IObservable<Mat>A sequence of Mat objects representing buffers of samples from the source signal.
Returns
- IObservable<Mat>
A sequence of Mat objects representing buffers of samples from the source signal, but where a specified number of samples has been removed from the start of the sequence.