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)
Syntaxpublic static void Repeat(
IInputArray src,
int ny,
int nx,
IOutputArray dst
)
Public Shared Sub Repeat (
src As IInputArray,
ny As Integer,
nx As Integer,
dst As IOutputArray
)
public:
static void Repeat(
IInputArray^ src,
int ny,
int nx,
IOutputArray^ dst
)
static member Repeat :
src : IInputArray *
ny : int *
nx : int *
dst : IOutputArray -> unit
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