[][src]Function opencv::core::transpose

pub fn transpose(
    src: &dyn ToInputArray,
    dst: &mut dyn ToOutputArray
) -> Result<()>

Transposes a matrix.

The function cv::transpose transposes the matrix src : block formula

Note: No complex conjugation is done in case of a complex matrix. It should be done separately if needed.

Parameters

  • src: input array.
  • dst: output array of the same type as src.