[][src]Function opencv::cudaarithm::bitwise_not

pub fn bitwise_not(
    src: &dyn ToInputArray,
    dst: &mut dyn ToOutputArray,
    mask: &dyn ToInputArray,
    stream: &mut Stream
) -> Result<()>

Performs a per-element bitwise inversion.

Parameters

  • src: Source matrix.
  • dst: Destination matrix with the same size and type as src .
  • 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()