ImageTColor, TDepthCopy Method (ImageGray, Byte) |
http://www.emgu.com
Make a copy of the image using a mask, if ROI is set, only copy the ROI
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<TColor, TDepth> Copy(
Image<Gray, byte> mask
)
Public Function Copy (
mask As Image(Of Gray, Byte)
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Copy(
Image<Gray, unsigned char>^ mask
)
member Copy :
mask : Image<Gray, byte> -> Image<'TColor, 'TDepth>
Parameters
- mask
- Type: Emgu.CVImageGray, Byte
the mask for coping
Return Value
Type:
ImageTColor,
TDepth A copy of the image
See Also