我正在尝试构建一个相机应用程序,该应用程序接受相机预览,操纵像素,然后显示新图像。我需要实时进行操作。
根据我在网上阅读的内容以及此处的问题,您需要制作自定义表面视图并通过该onPreviewFrame
方法操作像素阵列。我已经构建了一个自定义表面视图并运行此方法。我已将其转换YUV
为RGB
.
现在,我的问题是,如何在屏幕上实时显示这个新的像素阵列?我是否以某种方式在onPreviewFrame
方法中返回它?我必须更改byte[]
数组吗?我是否需要使用新的像素阵列并使用位图显示它?有没有办法在byte[]
不显示预览的情况下从相机预览中获取数组?
如果有人可以用代码示例回答这些问题,那就太好了!我对 Android 有点陌生,所以我需要解释清楚的答案让我理解。这是我运行相机预览的部分代码:
public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
// If your preview can change or rotate, take care of those events here.
// Make sure to stop the preview before resizing or reformatting it.
if (mHolder.getSurface() == null){
// preview surface does not exist
return;
}
// stop preview before making changes
try {
mCamera.stopPreview();
} catch (Exception e){
// ignore: tried to stop a non-existent preview
}
// start preview with new settings
try {
//parameters.setPreviewSize(w, h);
mCamera.setParameters(parameters);
mCamera.setPreviewDisplay(mHolder);
mCamera.setPreviewCallback(new PreviewCallback() {
public void onPreviewFrame(byte[] data, Camera camera)
{
System.out.println("onPreviewFrame");
//transforms NV21 pixel data into RGB pixels
decodeYUV420SP(pixels, data, previewSize.width, previewSize.height);
//Outuput the value of the top left pixel in the preview to LogCat
Log.i("Pixels", "The top right pixel has the following RGB (hexadecimal) values:"
+Integer.toHexString(pixels[0]));
}
});
mCamera.startPreview();
} catch (Exception e){
Log.d(null, "Error starting camera preview: " + e.getMessage());
}
}
这给了我想要显示的 rgb 像素数组,而不是预览。我该怎么做呢?