UMatBitwiseOr Operator (Double, UMat) |
http://www.emgu.com
Perform an binary OR operation with some color
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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