ImageTColor, TDepthAnd Method (ImageTColor, TDepth) |
http://www.emgu.com Perform an elementwise AND operation with another image and return the result
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
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