UMatBitwiseAnd Operator (UMat, Double) |
http://www.emgu.com
Perform an element wise AND operation using a mat and a scalar
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 &(
UMat mat1,
double val
)
Public Shared Operator And (
mat1 As UMat,
val As Double
) As UMat
public:
static UMat^ operator &(
UMat^ mat1,
double val
)
static let inline (&&&)
mat1 : UMat *
val : float : UMat
Parameters
- mat1
- Type: Emgu.CVUMat
The first image to AND - val
- Type: SystemDouble
The value to AND
Return Value
Type:
UMatThe result of the AND operation
See Also