transpose method

Mat transpose({
  1. bool inplace = false,
})

Implementation

Mat transpose({bool inplace = false}) {
  final dst = inplace ? this : Mat.empty();
  cvRun(() => ccore.Mat_Transpose(ref, dst.ref));
  return dst;
}