Method Process
Process(IObservable<float>)
Computes an observable sequence of one-dimensional histograms from each element in the source sequence.
public IObservable<Mat> Process(IObservable<float> source)
Parameters
source
IObservable<float>A sequence of 32-bit floating-point numbers used to calculate the one-dimensional histogram.
Returns
- IObservable<Mat>
A sequence of Mat objects representing the one-dimensional histogram calculated from the values in the
source
sequence.
Process<TArray>(IObservable<TArray>)
Computes an observable sequence of one-dimensional histograms from each element in the source sequence.
public IObservable<Mat> Process<TArray>(IObservable<TArray> source) where TArray : Arr
Parameters
source
IObservable<TArray>A sequence of array values used to calculate the one-dimensional histogram.
Returns
- IObservable<Mat>
A sequence of Mat objects representing the one-dimensional histogram calculated from the array values in the
source
sequence.
Type Parameters
TArray
The type of the array-like objects in the
source
sequence.