| MatRepeat Method |
replicates the input matrix the specified number of times in the horizontal and/or vertical direction
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public Mat Repeat(
int ny,
int nx
)
Public Function Repeat (
ny As Integer,
nx As Integer
) As Mat
public:
Mat^ Repeat(
int ny,
int nx
)
member Repeat :
ny : int *
nx : int -> Mat
Parameters
- ny
- Type: SystemInt32
How many times the src is repeated along the vertical axis - nx
- Type: SystemInt32
How many times the src is repeated along the horizontal axis
Return Value
Type:
Mat[Missing <returns> documentation for "M:OpenCvSharp.Mat.Repeat(System.Int32,System.Int32)"]
See Also