标签: android opencv
我想将图像旋转90度并将图像保持在坐标系的正数部分。我在下面使用代码:
val center = Point(imageHeight.toDouble()/2, imageWidth.toDouble()/2) val rot = Imgproc.getRotationMatrix2D(center, 90.0, 1.0)
但是不幸的是,图像旋转的方式是图像的一部分位于负x和y轴上。似乎已添加了一些偏移量。有没有这种偏移量的旋转矩阵有没有办法?
谢谢!