Copy the masked area of this image to destination

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void Copy(
	Image<TColor, TDepth> dest,
	Image<Gray, byte> mask
)
Public Sub Copy ( _
	dest As Image(Of TColor, TDepth), _
	mask As Image(Of Gray, Byte) _
)
public:
void Copy(
	Image<TColor, TDepth>^ dest, 
	Image<Gray, unsigned char>^ mask
)

Parameters

dest
Image<(Of <(<'TColor, TDepth>)>)>
the destination to copy to
mask
Image<(Of <(<'Gray, Byte>)>)>
the mask for copy

See Also