ImageTColor, TDepthCopy Method (ImageTColor, TDepth, ImageGray, Byte) |
http://www.emgu.com
Copy the masked area of this image to destination
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
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