Method Process
Process<TArray>(IObservable<TArray>)
Replicates each array in an observable sequence along the horizontal or vertical dimensions.
public override IObservable<TArray> Process<TArray>(IObservable<TArray> source) where TArray : Arr
Parameters
source
IObservable<TArray>A sequence of multi-channel array values.
Returns
- IObservable<TArray>
A sequence of multi-channel array values, where each array is created by replicating the original array along the horizontal or vertical dimension.
Type Parameters
TArray
The type of the array-like objects in the
source
sequence.