Table of Contents

Method BitwiseXor

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

BitwiseXor(InputArray, InputArray, OutputArray, InputArray)

computes bitwise exclusive-or of the two arrays (dst = src1 ^ src2)

public static void BitwiseXor(InputArray src1, InputArray src2, OutputArray dst, InputArray mask = default)

Parameters

src1 InputArray

first input array or a scalar.

src2 InputArray

second input array or a scalar.

dst OutputArray

output array that has the same size and type as the input

mask InputArray

optional operation mask, 8-bit single channel array, that specifies elements of the output array to be changed.