| Cv2Repeat Method (InputArray, Int32, Int32, OutputArray) |
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 static void Repeat(
InputArray src,
int ny,
int nx,
OutputArray dst
)
Public Shared Sub Repeat (
src As InputArray,
ny As Integer,
nx As Integer,
dst As OutputArray
)
public:
static void Repeat(
InputArray^ src,
int ny,
int nx,
OutputArray^ dst
)
static member Repeat :
src : InputArray *
ny : int *
nx : int *
dst : OutputArray -> unit
Parameters
- src
- Type: OpenCvSharpInputArray
The source array to replicate - 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 - dst
- Type: OpenCvSharpOutputArray
The destination array; will have the same type as src
See Also