pub fn transpose_def(
src1: &impl ToInputArray,
dst: &mut impl ToOutputArray,
) -> Result<()>Expand description
Transposes a matrix.
§Parameters
- src1: Source matrix. 1-, 4-, 8-byte element sizes are supported for now.
- dst: Destination matrix.
- stream: Stream for the asynchronous version.
§See also
transpose
§Note
This alternative version of transpose function uses the following default values for its arguments:
- stream: Stream::Null()