编程语言
首页 > 编程语言> > java-相机参数setRotation()方法不会旋转onPreviewFrame()中收到的帧

java-相机参数setRotation()方法不会旋转onPreviewFrame()中收到的帧

作者:互联网

我有自定义视图,该视图扩展了SurfaceView并实现了Camera.PreviewCallback.我将此视图用作相机预览.还实现了捕获视频帧以进行缓冲和流传输的功能.

当设备方向改变时,我使用适当的参数调用setRotation().

Camera.Parameters parameters = svVideo.getCamera().getParameters();
parameters.setRotation(rotation);
svVideo.getCamera().setParameters(parameters);

但是可悲的是,在onPreviewFrame()回调中捕获的帧的方向没有变化.我想要实现的是,如果我旋转流媒体设备,则发送到其他设备的视频流将相应地旋转.

我还尝试按照所述改变旋转角度来拍摄一些照片. setRotation()仅影响使用前置摄像头拍摄的图片的旋转(这很奇怪),而后置摄像头的照片则完全不受影响.

我的问题是:如何获得可以旋转用于流媒体的适当旋转的帧或由我自己在回调中旋转它们?

这是我的onPreviewFrame方法:

@Override
public void onPreviewFrame(final byte[] frame, final Camera camera) {
    final long now = System.nanoTime();
    if (outq.remainingCapacity() >= 2 && (now - this.frame) >= 1000000000 / fps) { //Don't encode more then we can handle, and also not more then FPS.
        queueFrameForEncoding(frame, now);
    }
    getEncodedFrames();
    camera.addCallbackBuffer(frame); //Recycle buffer
}

解决方法:

byte[] rotatedData = new byte[imgToDecode.length]; 
    for (int y = 0; y < imgHeight; y++) {
        for (int x = 0; x < imgWidth; x++)
            rotatedData[x * imgHeight + imgHeight - y - 1] = imgToDecode[x + y * imgWidth];
    }

同样在旋转后,您应该交换宽度和高度

int buffer = height;
height = width;
width = buffer;

标签:rotation,android-camera,video-streaming,java,android
来源: https://codeday.me/bug/20191120/2040373.html