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.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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