Method Process
Process<TArray>(IObservable<TArray>)
Finds the global minimum and maximum of each array in an observable sequence.
public IObservable<ArrayExtrema> Process<TArray>(IObservable<TArray> source) where TArray : ArrParameters
- sourceIObservable<TArray>
- A sequence of multi-channel array values. 
Returns
- IObservable<ArrayExtrema>
- A sequence of ArrayExtrema values, representing the minimum and maximum of the 2D array, and their corresponding locations. 
Type Parameters
- TArray
- The type of the array-like objects in the - sourcesequence.
Process<TArray, TMask>(IObservable<Tuple<TArray, TMask>>)
Finds the global minimum and maximum of each array in an observable sequence, where each array is paired with a mask where non-zero values indicate which elements in the array should be considered when computing the extrema.
public IObservable<ArrayExtrema> Process<TArray, TMask>(IObservable<Tuple<TArray, TMask>> source) where TArray : Arr where TMask : ArrParameters
- sourceIObservable<Tuple<TArray, TMask>>
- A sequence of array pairs, where the first array contains the elements over which to find the global minimum and maximum, and the second array contains the operation mask, where non-zero values indicate which elements in the first array should be considered, and which should be ignored, in the computation. 
Returns
- IObservable<ArrayExtrema>
- A sequence of ArrayExtrema values, representing the minimum and maximum of the 2D array, and their corresponding locations. 
Type Parameters
- TArray
- The type of the array-like objects over which to find the extrema. 
- TMask
- The type of the array-like objects used as an operation mask.