Click or drag to resize

Cv2.Repeat 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: 3.4.1.20180605-33-CaRLSharp
Syntax
public static void Repeat(
	InputArray src,
	int ny,
	int nx,
	OutputArray dst
)

Parameters

src
Type: OpenCvSharp.InputArray
The source array to replicate
ny
Type: System.Int32
How many times the src is repeated along the vertical axis
nx
Type: System.Int32
How many times the src is repeated along the horizontal axis
dst
Type: OpenCvSharp.OutputArray
The destination array; will have the same type as src
See Also