MatBitwiseAnd Operator (Mat, Double) |
http://www.emgu.com
Perform an element wise AND operation using a mat and a scalar
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static Mat operator &(
Mat mat1,
double val
)
Public Shared Operator And (
mat1 As Mat,
val As Double
) As Mat
public:
static Mat^ operator &(
Mat^ mat1,
double val
)
static let inline (&&&)
mat1 : Mat *
val : float : Mat
Parameters
- mat1
- Type: Emgu.CVMat
The first image to AND - val
- Type: SystemDouble
The value to AND
Return Value
Type:
MatThe result of the AND operation
See Also