ImageTColor, TDepthBitwiseOr Operator (ImageTColor, TDepth, ImageTColor, TDepth) |
http://www.emgu.com Perform an element wise OR operation with another image and return the result
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,
Image<TColor, TDepth> img2
)
Public Shared Operator Or (
img1 As Image(Of TColor, TDepth),
img2 As Image(Of TColor, TDepth)
) As Image(Of TColor, TDepth)
public:
static Image<TColor, TDepth>^ operator |(
Image<TColor, TDepth>^ img1,
Image<TColor, TDepth>^ img2
)
static let inline (|||)
img1 : Image<'TColor, 'TDepth> *
img2 : Image<'TColor, 'TDepth> : Image<'TColor, 'TDepth>
Parameters
- img1
- Type: Emgu.CVImageTColor, TDepth
The first image to apply bitwise OR operation - img2
- Type: Emgu.CVImageTColor, TDepth
The second image to apply bitwise OR operation
Return Value
Type:
ImageTColor,
TDepth The result of the OR operation
See Also