ImageTColor, TDepthXor Method (ImageTColor, TDepth, ImageGray, Byte) |
http://www.emgu.com
Perform an elementwise XOR operation with another image, using a mask, 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 Image<TColor, TDepth> Xor(
Image<TColor, TDepth> img2,
Image<Gray, byte> mask
)
Public Function Xor (
img2 As Image(Of TColor, TDepth),
mask As Image(Of Gray, Byte)
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Xor(
Image<TColor, TDepth>^ img2,
Image<Gray, unsigned char>^ mask
)
member Xor :
img2 : Image<'TColor, 'TDepth> *
mask : Image<Gray, byte> -> Image<'TColor, 'TDepth>
Parameters
- img2
- Type: Emgu.CVImageTColor, TDepth
The second image for the XOR operation - mask
- Type: Emgu.CVImageGray, Byte
The mask for the XOR operation
Return Value
Type:
ImageTColor,
TDepthThe result of the XOR operation
See Also