Class ConvertToMat
Represents an operator that converts each array-like object in the sequence into a 2D matrix.
[Combinator]
[WorkflowElementCategory(ElementCategory.Transform)]
public class ConvertToMat
- Inheritance
-
ConvertToMat
- Inherited Members
Methods
Process<TArray>(IObservable<TArray>)
Converts each array-like object in an observable sequence into a 2D matrix.
public IObservable<Mat> Process<TArray>(IObservable<TArray> source) where TArray : Arr
Parameters
source
IObservable<TArray>The sequence of array-like objects to be converted.
Returns
- IObservable<Mat>
A sequence of Mat objects representing the matrix header for the arbitrary array.
Type Parameters
TArray
The type of the array-like objects in the
source
sequence.