rotate method

Mat rotate(
  1. int rotationCode, {
  2. bool inplace = false,
})

Implementation

Mat rotate(int rotationCode, {bool inplace = false}) {
  final dst = inplace ? this : Mat.empty();
  cvRun(() => ccore.cv_rotate(ref, dst.ref, rotationCode, ffi.nullptr));
  return dst;
}