Click or drag to resize

CvInvokeRepeat Method

http://www.emgu.com
Fills the destination array with source array tiled: dst(i,j)=src(i mod rows(src), j mod cols(src))So the destination array may be as larger as well as smaller than the source array

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void Repeat(
	IInputArray src,
	int ny,
	int nx,
	IOutputArray dst
)

Parameters

src
Type: Emgu.CVIInputArray
Source array, image or matrix
ny
Type: SystemInt32
Flag to specify how many times the src is repeated along the horizontal axis.
nx
Type: SystemInt32
Flag to specify how many times the src is repeated along the vertical axis.
dst
Type: Emgu.CVIOutputArray
Destination array, image or matrix
See Also