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

时间:2012-10-12 05:06:57

标签: android image opencv rotation

  

可能重复:
  Rotate cv::Mat using cv::warpAffine offsets destination image

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

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);

original Image

rotated Image

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

//创建新尺寸的框(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);

//你的resultMat看起来像这样NOT CROPPED Image // BTW ..提供的链接与此解决方案之间存在巨大差异

1 个答案:

答案 0 :(得分:2)

我刚读完文档: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);