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