Click or drag to resize
CvInvokecvCopy Method
http://www.emgu.com
Copies selected elements from input array to output array: dst(I)=src(I) if mask(I)!=0. If any of the passed arrays is of IplImage type, then its ROI and COI fields are used. Both arrays must have the same type, the same number of dimensions and the same size. The function can also copy sparse arrays (mask is not supported in this case).

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static void cvCopy(
	IntPtr src,
	IntPtr des,
	IntPtr mask
)

Parameters

src
Type: SystemIntPtr
The source array
des
Type: SystemIntPtr
The destination array
mask
Type: SystemIntPtr
Operation mask, 8-bit single channel array; specifies elements of destination array to be changed
See Also