MatBitwiseOr Operator (Double, Mat) |
http://www.emgu.com
Perform an binary OR operation with some color
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 |(
double val,
Mat mat1
)
Public Shared Operator Or (
val As Double,
mat1 As Mat
) As Mat
public:
static Mat^ operator |(
double val,
Mat^ mat1
)
static let inline (|||)
val : float *
mat1 : Mat : Mat
Parameters
- val
- Type: SystemDouble
The color to OR - mat1
- Type: Emgu.CVMat
The mat to OR
Return Value
Type:
Mat The result of the OR operation
See Also