ImageTColor, TDepthAnd Method (ImageTColor, TDepth, ImageGray, Byte) |
http://www.emgu.com
Perform an elementwise AND operation with another image, using a mask, and return the result
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> And(
Image<TColor, TDepth> img2,
Image<Gray, byte> mask
)
Public Function And (
img2 As Image(Of TColor, TDepth),
mask As Image(Of Gray, Byte)
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ And(
Image<TColor, TDepth>^ img2,
Image<Gray, unsigned char>^ mask
)
member And :
img2 : Image<'TColor, 'TDepth> *
mask : Image<Gray, byte> -> Image<'TColor, 'TDepth>
Parameters
- img2
- Type: Emgu.CVImageTColor, TDepth
The second image for the AND operation - mask
- Type: Emgu.CVImageGray, Byte
The mask for the AND operation
Return Value
Type:
ImageTColor,
TDepth The result of the AND operation
See Also