MatBitwiseOr Operator (Mat, Double) |
http://www.emgu.com
Perform an binary OR operation with some value
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,
double val
)
Public Shared Operator Or (
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 mat to OR - val
- Type: SystemDouble
The color to OR
Return Value
Type:
Mat The result of the OR operation
See Also