OpenCV
index
 
Name copy ( )
Examples None available
Description Copies an image onto OpenCV buffer. no ALPHA
Syntax
copy(image);
copy(file);
copy(image, sx, sy, swidth, sheight, dx, dy, dwidth, dheight);
copy(file, sx, sy, swidth, sheight, dx, dy, dwidth, dheight);
copy(pixels, step, sx, sy, swidth, sheight, dx, dy, dwidth, dheight);
Parameters
image   the new buffer's data
pixels   the new buffer's data
int   the destination x coordinate
int   the destination y coordinate
int   the destination width
int   the destination height
Returns None
Usage Web & Application
Related