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