UMatBitwiseAnd Operator (MCvScalar, UMat) |
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.0.1.3373 (4.0.1.3373)
Syntaxpublic static UMat operator &(
MCvScalar val,
UMat mat1
)
Public Shared Operator And (
val As MCvScalar,
mat1 As UMat
) As UMat
public:
static UMat^ operator &(
MCvScalar val,
UMat^ mat1
)
static let inline (&&&)
val : MCvScalar *
mat1 : UMat : UMat
Parameters
- val
- Type: Emgu.CV.StructureMCvScalar
The scalar to AND - mat1
- Type: Emgu.CVUMat
The first mat to AND
Return Value
Type:
UMatThe result of the AND operation
See Also