rotate method
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;
}
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;
}