UMatBitwiseOr Operator (Double, UMat) |
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 UMat operator |(
double val,
UMat mat1
)
Public Shared Operator Or (
val As Double,
mat1 As UMat
) As UMat
public:
static UMat^ operator |(
double val,
UMat^ mat1
)
static let inline (|||)
val : float *
mat1 : UMat : UMat
Parameters
- val
- Type: SystemDouble
The color to OR - mat1
- Type: Emgu.CVUMat
The mat to OR
Return Value
Type:
UMat The result of the OR operation
See Also