ImageTColor, TDepthBitwiseOr Operator (ImageTColor, TDepth, Double) |
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 Image<TColor, TDepth> operator |(
Image<TColor, TDepth> img1,
double val
)
Public Shared Operator Or (
img1 As Image(Of TColor, TDepth),
val As Double
) As Image(Of TColor, TDepth)
public:
static Image<TColor, TDepth>^ operator |(
Image<TColor, TDepth>^ img1,
double val
)
static let inline (|||)
img1 : Image<'TColor, 'TDepth> *
val : float : Image<'TColor, 'TDepth>
Parameters
- img1
- Type: Emgu.CVImageTColor, TDepth
The image to OR - val
- Type: SystemDouble
The color to OR
Return Value
Type:
ImageTColor,
TDepth The result of the OR operation
See Also