Android YUV数据旋转java实现

Android YUV数据旋转java实现

public class CameraUtil {

    public static byte[] rotateYUV420Degree270(byte[] data, int imageWidth,
                                               int imageHeight) {
        byte[] yuv = new byte[imageWidth * imageHeight * 3 / 2];
        int nWidth = 0, nHeight = 0;
        int wh = 0;
        int uvHeight = 0;
        if (imageWidth != nWidth || imageHeight != nHeight) {
            nWidth = imageWidth;
            nHeight = imageHeight;
            wh = imageWidth * imageHeight;
            uvHeight = imageHeight >> 1;// uvHeight = height / 2
        }
        // ??Y
        int k = 0;
        for (int i = 0; i < imageWidth; i++) {
            int nPos = 0;
            for (int j = 0; j < imageHeight; j++) {
                yuv[k] = data[nPos + i];
                k++;
                nPos += imageWidth;
            }
        }
        for (int i = 0; i < imageWidth; i += 2) {
            int nPos = wh;
            for (int j = 0; j < uvHeight; j++) {
                yuv[k] = data[nPos + i];
                yuv[k + 1] = data[nPos + i + 1];
                k += 2;
                nPos += imageWidth;
            }
        }
        return rotateYUV420Degree180(yuv, imageWidth, imageHeight);
    }

    public static byte[] rotateYUV420Degree180(byte[] data, int imageWidth, int imageHeight) {
        byte[] yuv = new byte[imageWidth * imageHeight * 3 / 2];
        int i = 0;
        int count = 0;
        for (i = imageWidth * imageHeight - 1; i >= 0; i--) {
            yuv[count] = data[i];
            count++;
        }
        i = imageWidth * imageHeight * 3 / 2 - 1;
        for (i = imageWidth * imageHeight * 3 / 2 - 1; i >= imageWidth
                * imageHeight; i -= 2) {
            yuv[count++] = data[i - 1];
            yuv[count++] = data[i];
        }
        return yuv;
    }

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

    public static void setCameraDisplayOrientation(Activity activity,
                                                   int cameraId, android.hardware.Camera camera) {
        android.hardware.Camera.CameraInfo info = new android.hardware.Camera.CameraInfo();
        android.hardware.Camera.getCameraInfo(cameraId, info);
        int rotation = activity.getWindowManager().getDefaultDisplay().getRotation();
        int degrees = 0;
        switch (rotation) {
            case Surface.ROTATION_0: degrees = 0; break;
            case Surface.ROTATION_90: degrees = 90; break;
            case Surface.ROTATION_180: degrees = 180; break;
            case Surface.ROTATION_270: degrees = 270; break;
        }

        int result;
        if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
            result = (info.orientation + degrees) % 360;
            result = (360 - result) % 360;  // compensate the mirror
        } else {  // back-facing
            result = (info.orientation - degrees + 360) % 360;
        }
        camera.setDisplayOrientation(result);
    }
}
实现将字幕添加到YUV数据中,可以使用JavaCV这个开源库来实现。以下是一些基本的步骤: 1. 读取原始的YUV数据 使用JavaCV中的FFmpegFrameGrabber类可以读取YUV数据。例如: ``` FFmpegFrameGrabber grabber = new FFmpegFrameGrabber("input.yuv"); grabber.setImageWidth(width); grabber.setImageHeight(height); grabber.setPixelFormat(avutil.AV_PIX_FMT_YUV420P); grabber.start(); ``` 2. 创建OpenCV的Mat对象 使用JavaCV中的Java2DFrameConverter类可以将YUV数据转换为OpenCV的Mat对象。例如: ``` Java2DFrameConverter converter = new Java2DFrameConverter(); Frame frame = grabber.grab(); BufferedImage image = converter.convert(frame); Mat mat = new Mat(height + height / 2, width, CvType.CV_8UC1); mat.put(0, 0, ((DataBufferByte) image.getRaster().getDataBuffer()).getData()); ``` 3. 添加字幕 使用OpenCV的putText方法可以在Mat对象上添加字幕。例如: ``` Scalar color = new Scalar(255, 255, 255); String text = "Hello, world!"; Point org = new Point(100, 100); int fontFace = Core.FONT_HERSHEY_SIMPLEX; double fontScale = 1; int thickness = 2; Imgproc.putText(mat, text, org, fontFace, fontScale, color, thickness); ``` 4. 将Mat对象转换为YUV数据 使用JavaCV中的OpenCVFrameConverter类可以将OpenCV的Mat对象转换为YUV数据。例如: ``` OpenCVFrameConverter.ToIplImage iplConverter = new OpenCVFrameConverter.ToIplImage(); IplImage iplImage = iplConverter.convert(mat); Java2DFrameConverter java2dConverter = new Java2DFrameConverter(); BufferedImage bufferedImage = java2dConverter.convert(iplImage); Frame processedFrame = converter.getFrame(bufferedImage, grabber.getTimestamp()); ``` 5. 写入处理后的YUV数据 使用JavaCV中的FFmpegFrameRecorder类可以将处理后的YUV数据写入文件。例如: ``` FFmpegFrameRecorder recorder = new FFmpegFrameRecorder("output.yuv", width, height); recorder.setPixelFormat(avutil.AV_PIX_FMT_YUV420P); recorder.start(); recorder.record(processedFrame); ``` 以上是一个基本的实现过程,具体的实现还需要根据实际需求进行调整。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值