Method Generate
Generate()
Generates an observable sequence that contains the image loaded from the specified file.
public override IObservable<IplImage> Generate()
Returns
- IObservable<IplImage>
A sequence containing a single IplImage object representing the image loaded from the specified file.
Generate<TSource>(IObservable<TSource>)
Generates an observable sequence of images loaded from the specified file, and where each image is loaded only when an observable sequence raises a notification.
public IObservable<IplImage> Generate<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The sequence containing the notifications used for loading new images.
Returns
- IObservable<IplImage>
The sequence of IplImage objects loaded from the specified file. The most current file name is used to load the image after each notification in the
source
sequence.
Type Parameters
TSource
The type of the elements in the
source
sequence.