Class Tile
Represents an operator that replicates each array in the sequence along the horizontal or vertical dimensions.
public class Tile : ArrayTransform
- Inheritance
-
Tile
- Inherited Members
Properties
ColumnTiles
Gets or sets the number of times to repeat each array in the horizontal dimension.
[Range(1, 2147483647)]
public int ColumnTiles { get; set; }
Property Value
RowTiles
Gets or sets the number of times to repeat each array in the vertical dimension.
[Range(1, 2147483647)]
public int RowTiles { get; set; }
Property Value
Methods
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.