在 Android 中使用 OpenCV 进行图像旋转会切断图像的边缘



可能的重复项:
使用 cv::warpAffine 偏移目标图像旋转 cv::Mat

下面的代码可以成功旋转图像,但它切断了图像的角落并且旋转方向错误!!

Mat cvImage = Highgui.imread("mnt/sdcard/canvasgrid.png");
int degrees = 20;
Point center = new Point(cvImage.cols()/2, cvImage.rows()/2);
Mat rotImage = Imgproc.getRotationMatrix2D(center, degrees, 1.0);
Mat dummy = cvWaterImage;
Imgproc.warpAffine(cvImage, dummy, rotImage, cvImage.size());
rotatedImage = dummy;
Highgui.imwrite("mnt/sdcard/imageRotate.png",rotatedImage);

原始图像

旋转图像

PLUS 旋转图像的背景是黑色的,但我希望它是透明的。

我做错了什么吗??谢谢

编辑已解决

首先获得旋转图像的新宽度/高度

double radians = Math.toRadians(rotationAngle);
double sin = Math.abs(Math.sin(radians));
double cos = Math.abs(Math.cos(radians));
int newWidth = (int) (scaledImage.width() * cos + scaledImage.height() * sin);
int newHeight = (int) (scaledImage.width() * sin + scaledImage.height() * cos);
int[] newWidthHeight = {newWidth, newHeight};

创建新尺寸的框(新宽度/新高度)

int pivotX = newWidthHeight[0]/2; 
int pivotY = newWidthHeight[1]/2;

旋转水图像

org.opencv.core.Point center = new org.opencv.core.Point(pivotX, pivotY);
Size targetSize = new Size(newWidthHeight[0], newWidthHeight[1]);

现在创建另一个垫子,这样我们就可以用它来映射

Mat targetMat = new Mat(targetSize, scaledImage.type());
int offsetX = (newWidthHeight[0] - scaledImage.width()) / 2;
int offsetY = (newWidthHeight[1] - scaledImage.height()) / 2;

集中水印

Mat waterSubmat = targetMat.submat(offsetY, offsetY + scaledImage.height(), offsetX,     offsetX + scaledImage.width());
scaledImage.copyTo(waterSubmat);
Mat rotImage = Imgproc.getRotationMatrix2D(center, waterMarkAngle, 1.0);
Mat resultMat = new Mat(); // CUBIC
Imgproc.warpAffine(targetMat, resultMat, rotImage, targetSize, Imgproc.INTER_LINEAR,    Imgproc.BORDER_CONSTANT, colorScalar);

你的结果垫看起来像这样 未裁剪的图像顺便说一句..提供的链接与此解决方案之间存在巨大差异

我刚刚通读了文档:ImgProc.warpAffine

只是一个摘录:

void warpAffine(InputArray src, OutputArray dst, InputArray M, Size dsize, [...]);
//Parameters: dsize – Size of the destination image.

请尝试以下操作:

Imgproc.warpAffine(cvImage, dummy, rotImage, dummy.size());

为了玩透明度,摆弄最后的参数:

Imgproc.warpAffine(cvImage, dummy, rotImage, dummy.size(), INTER_LINEAR, BORDER_TRANSPARENT);

最新更新