| Cv2Repeat Method (Mat, Int32, Int32) |
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 Mat Repeat(
Mat src,
int ny,
int nx
)
Public Shared Function Repeat (
src As Mat,
ny As Integer,
nx As Integer
) As Mat
public:
static Mat^ Repeat(
Mat^ src,
int ny,
int nx
)
static member Repeat :
src : Mat *
ny : int *
nx : int -> Mat
Parameters
- src
- Type: OpenCvSharpMat
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
Return Value
Type:
Mat[Missing <returns> documentation for "M:OpenCvSharp.Cv2.Repeat(OpenCvSharp.Mat,System.Int32,System.Int32)"]
See Also