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