copycv

Copies an image.

Syntax

R = copycv(handlehandle)

Inputs

handle
Handle of an image.
Type: integer

Outputs

R
Handle to the ComputerVision data of the new image copied. This handle can be used when accessing other functions in the ComputerVision library.
Type: integer

Example

Copies an image:

handle = imreadcv('1.jpg');
R = copycv(handle);