Method Process
Process(IObservable<IplImage>)
Splits each image in an observable sequence into multiple sub-images along the specified dimension.
public IObservable<IplImage> Process(IObservable<IplImage> source)
Parameters
source
IObservable<IplImage>A sequence of image values.
Returns
- IObservable<IplImage>
A sequence of image values, where each image represents a slice of the original image, along the specified direction, with the specified number of elements.
Remarks
If Count is smaller than the size of the images, this
operator will return multiple sub-images for each image in the
source
sequence.
Process(IObservable<Mat>)
Splits each matrix in an observable sequence into multiple sub-matrices along the specified dimension.
public IObservable<Mat> Process(IObservable<Mat> source)
Parameters
source
IObservable<Mat>A sequence of 2D matrix values.
Returns
- IObservable<Mat>
A sequence of 2D matrix values, where each matrix represents a slice of the original matrix, along the specified direction, with the specified number of elements.
Remarks
If Count is smaller than the size of the matrices, this
operator will return multiple sub-matrices for each matrix in the
source
sequence.