ImageTColor, TDepthXor Method (ImageTColor, TDepth) |
http://www.emgu.com Perform an elementwise XOR operation with another image and return the result
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic Image<TColor, TDepth> Xor(
Image<TColor, TDepth> img2
)
Public Function Xor (
img2 As Image(Of TColor, TDepth)
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Xor(
Image<TColor, TDepth>^ img2
)
member Xor :
img2 : Image<'TColor, 'TDepth> -> Image<'TColor, 'TDepth>
Parameters
- img2
- Type: Emgu.CVImageTColor, TDepth
The second image for the XOR operation
Return Value
Type:
ImageTColor,
TDepth The result of the XOR operation
See Also