ImageTColor, TDepthCopy Method (ImageTColor, TDepth, ImageGray, Byte) |
http://www.emgu.com
Copy the masked area of this image to destination
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic 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
)
member Copy :
dest : Image<'TColor, 'TDepth> *
mask : Image<Gray, byte> -> unit
Parameters
- dest
- Type: Emgu.CVImageTColor, TDepth
the destination to copy to - mask
- Type: Emgu.CVImageGray, Byte
the mask for copy
See Also