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