Copy the masked area of this image to destination

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

Syntax

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

Parameters

dest
Type: Emgu.CV..::.Image<(Of <(TColor, TDepth>)>)
the destination to copy to
mask
Type: Emgu.CV..::.Image<(Of <(Gray, Byte>)>)
the mask for copy

See Also