UMatBitwiseAnd Operator (Double, UMat) |
http://www.emgu.com
Perform an element wise AND operation using a mat and a color
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static UMat operator &(
double val,
UMat mat1
)
Public Shared Operator And (
val As Double,
mat1 As UMat
) As UMat
public:
static UMat^ operator &(
double val,
UMat^ mat1
)
static let inline (&&&)
val : float *
mat1 : UMat : UMat
Parameters
- val
- Type: SystemDouble
The value to AND - mat1
- Type: Emgu.CVUMat
The first mat to AND
Return Value
Type:
UMatThe result of the AND operation
See Also