BitwiseXor Method (Image, Image)

CVB.Net Documentation
Performs a bit-wise XOR operation between the pixels of the two input images.

Namespace:  Stemmer.Cvb.Foundation
Assembly:  Stemmer.Cvb.Foundation (in Stemmer.Cvb.Foundation.dll) Version: 14.0.0.0
Syntax

public static Image Xor(
	Image img1,
	Image img2
)

Parameters

img1
Type: Stemmer.CvbImage
Input image 1
img2
Type: Stemmer.CvbImage
Input image 2

Return Value

Type: Image
Result image
Exceptions

ExceptionCondition
ArgumentNullExceptionIf the input img1/img2 is null.
ObjectDisposedExceptionIf the input img1/img2 has already been disposed.
Remarks

If the sizes of the two input images differ, the result image will contain the biggest rectangle common to both input images.
See Also

Reference