cv.bitwise_xor - MATLAB File Help
cv.bitwise_xor

Calculates the per-element bit-wise "exclusive or" operation on two arrays or an array and a scalar

dst = cv.bitwise_xor(src1, src2)
dst = cv.bitwise_xor(src1, src2, 'OptionName', optionValue, ...)

Input

Output

Options

The function calculates the per-element bit-wise logical "exclusive-or" operation for:

In case of floating-point arrays, their machine-specific bit representations (usually IEEE754-compliant) are used for the operation. In case of multi-channel arrays, each channel is processed independently. In the second and third cases above, the scalar is first converted to the array type.

See also