Method Generate
Generate()
Generates an observable sequence of buffers filled with a specified range of numbers.
public override IObservable<Mat> Generate()
Returns
- IObservable<Mat>
A sequence of Mat objects representing fixed-size buffers linearly filled with values between the inclusive lower bound and exclusive upper bound.
Generate<TSource>(IObservable<TSource>)
Generates an observable sequence of buffers filled with a specified range of numbers, and where each new buffer is emitted only when an observable sequence emits a notification.
public IObservable<Mat> Generate<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The sequence containing the notifications used for emitting sample buffers.
Returns
- IObservable<Mat>
A sequence of Mat objects representing fixed-size buffers linearly filled with values between the inclusive lower bound and exclusive upper bound.
Type Parameters
TSource
The type of the elements in the
source
sequence.