[][src]Function opencv::cudaarithm::bitwise_xor

pub fn bitwise_xor(
    src1: &dyn ToInputArray,
    src2: &dyn ToInputArray,
    dst: &mut dyn ToOutputArray,
    mask: &dyn ToInputArray,
    stream: &mut Stream
) -> Result<()>

Performs a per-element bitwise exclusive or operation of two matrices (or of matrix and scalar).

Parameters

  • src1: First source matrix or scalar.
  • src2: Second source matrix or scalar.
  • dst: Destination matrix that has the same size and type as the input array(s).
  • mask: Optional operation mask, 8-bit single channel array, that specifies elements of the destination array to be changed. The mask can be used only with single channel images.
  • stream: Stream for the asynchronous version.

C++ default parameters

  • mask: noArray()
  • stream: Stream::Null()