相机像素旋转

时间:2011-07-28 02:09:46

标签: android image-processing android-camera

我想对从相机获取的像素进行一些图像处理。

问题是相机的像素旋转了90度。

我在方法onPreviewFrame(byte[] data, Camera camera)

中获取像素

我尝试camera.setDisplayOrientation(90);并以正确的方向显示视频,但我仍然收到文档中所述的旋转像素:

  

这不会影响传入的字节数组的顺序   Android.Hardware.Camera.IPreviewCallback.OnPreviewFrame(字节[],   Android.Hardware.Camera),JPEG图片或录制的视频。

我也尝试过:

parameters.setRotation(90);
camera.setParameters(parameters);

但这没效果。

我正在使用android 2.2

enter image description here

使用camera.setDisplayOrientation(90);

时,顶部图像显示SurfaceView

第二张图片来自onPreviewFrame(byte[] data, Camera camera)数组data。如您所见,data数组已旋转。

4 个答案:

答案 0 :(得分:7)

虽然我有点迟到了,但这是我写的一种方法,其他人可能会发现旋转YUV420sp(NV21)图像很有用。我在SO上看到的所有其他方法似乎都没有。

public static byte[] rotateNV21(final byte[] yuv,
                                final int width,
                                final int height,
                                final int rotation)
{
  if (rotation == 0) return yuv;
  if (rotation % 90 != 0 || rotation < 0 || rotation > 270) {
    throw new IllegalArgumentException("0 <= rotation < 360, rotation % 90 == 0");
  }

  final byte[]  output    = new byte[yuv.length];
  final int     frameSize = width * height;
  final boolean swap      = rotation % 180 != 0;
  final boolean xflip     = rotation % 270 != 0;
  final boolean yflip     = rotation >= 180;

  for (int j = 0; j < height; j++) {
    for (int i = 0; i < width; i++) {
      final int yIn = j * width + i;
      final int uIn = frameSize + (j >> 1) * width + (i & ~1);
      final int vIn = uIn       + 1;

      final int wOut     = swap  ? height              : width;
      final int hOut     = swap  ? width               : height;
      final int iSwapped = swap  ? j                   : i;
      final int jSwapped = swap  ? i                   : j;
      final int iOut     = xflip ? wOut - iSwapped - 1 : iSwapped;
      final int jOut     = yflip ? hOut - jSwapped - 1 : jSwapped;

      final int yOut = jOut * wOut + iOut;
      final int uOut = frameSize + (jOut >> 1) * wOut + (iOut & ~1);
      final int vOut = uOut + 1;

      output[yOut] = (byte)(0xff & yuv[yIn]);
      output[uOut] = (byte)(0xff & yuv[uIn]);
      output[vOut] = (byte)(0xff & yuv[vIn]);
    }
  }
  return output;
}

答案 1 :(得分:5)

也许您可以在侧面框架上执行图像处理,并且只在显示它时担心旋转(您已经完成了)。如果没有,您需要以旧式方式旋转框架。我在某处(稍加修改)找到了一些可能有用的代码:

// load the origial bitmap
Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
       R.drawable.android);

int width = bitmap.width();
int height = bitmap.height();

// create a matrix for the manipulation
Matrix matrix = new Matrix();
// rotate the Bitmap 90 degrees (counterclockwise)
matrix.postRotate(90);

// recreate the new Bitmap, swap width and height and apply transform
Bitmap rotatedBitmap = Bitmap.createBitmap(bitmap, 0, 0,
                  width, height, matrix, true);

这很简单,因为createBitmap方法支持矩阵变换: http://developer.android.com/reference/android/graphics/Bitmap.html#createBitmap(android.graphics.Bitmap, int, int, int, int, android.graphics.Matrix, boolean)

答案 2 :(得分:4)

如果您正在接收YUV420字节数组,则以下方法可将此旋转90度。

private byte[] rotateYUV420Degree90(byte[] data, int imageWidth, int imageHeight) 
{
    byte [] yuv = new byte[imageWidth*imageHeight*3/2];
    // Rotate the Y luma
    int i = 0;
    for(int x = 0;x < imageWidth;x++)
    {
        for(int y = imageHeight-1;y >= 0;y--)                               
        {
            yuv[i] = data[y*imageWidth+x];
            i++;
        }
    }
    // Rotate the U and V color components 
    i = imageWidth*imageHeight*3/2-1;
    for(int x = imageWidth-1;x > 0;x=x-2)
    {
        for(int y = 0;y < imageHeight/2;y++)                                
        {
            yuv[i] = data[(imageWidth*imageHeight)+(y*imageWidth)+x];
            i--;
            yuv[i] = data[(imageWidth*imageHeight)+(y*imageWidth)+(x-1)];
            i--;
        }
    }
    return yuv;
}

(请注意,这可能只有在宽度和高度为4的情况下才有效)

答案 3 :(得分:2)

您可以按如下方式旋转原始数据:

// Rotate the data for Portait Mode
byte[] rotatedData = new byte[data.length];
for (int y = 0; y < height; y++) {
    for (int x = 0; x < width; x++)
        rotatedData[x * height + height - y - 1] = data[x + y * width];
}

其中'width'和'height'是预览图像的预设尺寸,使用:

Camera.Parameters parameters = camera.getParameters();
parameters.setPreviewSize(width, height);
camera.setParameters(parameters);

然后,您可以相应地使用轮换数据。

我只使用这种方法进行二维码扫描,看起来效果很好。不确定它会如何影响其他应用程序。