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.1.0.649 (2.1.0.649)

Syntax

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

Parameters

src
IntPtr
Source array, image or matrix
dst
IntPtr
Destination array, image or matrix

See Also