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.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
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