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 (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public static void cvRepeat(
	IntPtr src,
	IntPtr dst
)
Visual Basic (Declaration)
Public Shared Sub cvRepeat ( _
	src As IntPtr, _
	dst As IntPtr _
)
Visual C++
public:
static void cvRepeat(
	IntPtr src, 
	IntPtr dst
)

Parameters

src
Type: System..::.IntPtr
Source array, image or matrix
dst
Type: System..::.IntPtr
Destination array, image or matrix

See Also