[This is preliminary documentation and is subject to change.]

Perform an elementwise OR operation with another image and return the result

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public 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
)

Parameters

img1
Image<(Of <(TColor, TDepth>)>)

[Missing <param name="img1"/> documentation for "M:Emgu.CV.Image`2.op_BitwiseOr(Emgu.CV.Image{`0,`1},Emgu.CV.Image{`0,`1})"]

img2
Image<(Of <(TColor, TDepth>)>)

[Missing <param name="img2"/> documentation for "M:Emgu.CV.Image`2.op_BitwiseOr(Emgu.CV.Image{`0,`1},Emgu.CV.Image{`0,`1})"]

Return Value

The result of the OR operation

See Also