Method Generate
Generate()
Generates an observable sequence of images from the specified movie file.
public override IObservable<IplImage> Generate()
Returns
- IObservable<IplImage>
A sequence of IplImage objects representing each of the frames in the specified movie file.
Generate<TSource>(IObservable<TSource>)
Generates a sequence of images from the specified movie file, where each new image is emitted only when an observable sequence emits a notification.
public IObservable<IplImage> Generate<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The sequence containing the notifications used for reading new images from the movie file.
Returns
- IObservable<IplImage>
A sequence of IplImage objects representing each of the frames in the specified movie file.
Type Parameters
TSource
The type of the elements in the
source
sequence.