我需要使用相机预览数据进行一些实时图像处理,例如面部检测,这是一个c ++库,然后在屏幕上标记面部显示已处理的预览。
我从http://nezarobot.blogspot.com/2016/03/android-surfacetexture-camera2-opencv.html读过Android camera2 API - Display processed frame in real time和Eddy Talvala的回答。在这两个网页之后,我设法构建应用程序(没有调用面部检测库,只尝试使用ANativeWindow显示预览),但每次我在Google Pixel上运行此应用程序 - 7.1.0 - 在Genymotion上运行的API 25,应用程序总是崩溃抛出以下日志
08-28 14:23:09.598 2099-2127/tau.camera2demo A/libc: Fatal signal 11 (SIGSEGV), code 2, fault addr 0xd3a96000 in tid 2127 (CAMERA2)
[ 08-28 14:23:09.599 117: 117 W/ ]
debuggerd: handling request: pid=2099 uid=10067 gid=10067 tid=2127
我用谷歌搜索了这个,但没有找到答案。
Github上的整个项目: https://github.com/Fung-yuantao/android-camera2demo
这是关键代码(我认为)。
Camera2Demo.java中的代码:
private void startPreview(CameraDevice camera) throws CameraAccessException {
SurfaceTexture texture = mPreviewView.getSurfaceTexture();
// to set PREVIEW size
texture.setDefaultBufferSize(mPreviewSize.getWidth(),mPreviewSize.getHeight());
surface = new Surface(texture);
try {
// to set request for PREVIEW
mPreviewBuilder = camera.createCaptureRequest(CameraDevice.TEMPLATE_PREVIEW);
} catch (CameraAccessException e) {
e.printStackTrace();
}
mImageReader = ImageReader.newInstance(mImageWidth, mImageHeight, ImageFormat.YUV_420_888, 2);
mImageReader.setOnImageAvailableListener(mOnImageAvailableListener,mHandler);
mPreviewBuilder.addTarget(mImageReader.getSurface());
//output Surface
List<Surface> outputSurfaces = new ArrayList<>();
outputSurfaces.add(mImageReader.getSurface());
/*camera.createCaptureSession(
Arrays.asList(surface, mImageReader.getSurface()),
mSessionStateCallback, mHandler);
*/
camera.createCaptureSession(outputSurfaces, mSessionStateCallback, mHandler);
}
private CameraCaptureSession.StateCallback mSessionStateCallback = new CameraCaptureSession.StateCallback() {
@Override
public void onConfigured(CameraCaptureSession session) {
try {
updatePreview(session);
} catch (CameraAccessException e) {
e.printStackTrace();
}
}
@Override
public void onConfigureFailed(CameraCaptureSession session) {
}
};
private void updatePreview(CameraCaptureSession session)
throws CameraAccessException {
mPreviewBuilder.set(CaptureRequest.CONTROL_AF_MODE, CaptureRequest.CONTROL_AF_MODE_AUTO);
session.setRepeatingRequest(mPreviewBuilder.build(), null, mHandler);
}
private ImageReader.OnImageAvailableListener mOnImageAvailableListener = new ImageReader.OnImageAvailableListener() {
@Override
public void onImageAvailable(ImageReader reader) {
// get the newest frame
Image image = reader.acquireNextImage();
if (image == null) {
return;
}
// print image format
int format = reader.getImageFormat();
Log.d(TAG, "the format of captured frame: " + format);
// HERE to call jni methods
JNIUtils.display(image.getWidth(), image.getHeight(), image.getPlanes()[0].getBuffer(), surface);
//ByteBuffer buffer = image.getPlanes()[0].getBuffer();
//byte[] bytes = new byte[buffer.remaining()];
image.close();
}
};
JNIUtils.java中的代码:
import android.media.Image;
import android.view.Surface;
import java.nio.ByteBuffer;
public class JNIUtils {
// TAG for JNIUtils class
private static final String TAG = "JNIUtils";
// Load native library.
static {
System.loadLibrary("native-lib");
}
public static native void display(int srcWidth, int srcHeight, ByteBuffer srcBuffer, Surface surface);
}
native-lib.cpp中的代码:
#include <jni.h>
#include <string>
#include <android/log.h>
//#include <android/bitmap.h>
#include <android/native_window_jni.h>
#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR, "Camera2Demo", __VA_ARGS__)
extern "C" {
JNIEXPORT jstring JNICALL Java_tau_camera2demo_JNIUtils_display(
JNIEnv *env,
jobject obj,
jint srcWidth,
jint srcHeight,
jobject srcBuffer,
jobject surface) {
/*
uint8_t *srcLumaPtr = reinterpret_cast<uint8_t *>(env->GetDirectBufferAddress(srcBuffer));
if (srcLumaPtr == nullptr) {
LOGE("srcLumaPtr null ERROR!");
return NULL;
}
*/
ANativeWindow * window = ANativeWindow_fromSurface(env, surface);
ANativeWindow_acquire(window);
ANativeWindow_Buffer buffer;
ANativeWindow_setBuffersGeometry(window, srcWidth, srcHeight, 0/* format unchanged */);
if (int32_t err = ANativeWindow_lock(window, &buffer, NULL)) {
LOGE("ANativeWindow_lock failed with error code: %d\n", err);
ANativeWindow_release(window);
return NULL;
}
memcpy(buffer.bits, srcBuffer, srcWidth * srcHeight * 4);
ANativeWindow_unlockAndPost(window);
ANativeWindow_release(window);
return NULL;
}
}
在我评论memcpy
之后,应用程序不再崩溃,但什么也没有显示。所以我想问题现在转向如何正确使用memcpy
将捕获/处理的缓冲区复制到buffer.bits 。
更新
我改变了
memcpy(buffer.bits, srcBuffer, srcWidth * srcHeight * 4);
到
memcpy(buffer.bits, srcLumaPtr, srcWidth * srcHeight * 4);
应用程序不再崩溃并开始显示,但它显示的内容很奇怪。
答案 0 :(得分:2)
只是把它作为一个答案,以避免长链评论 - 这样的崩溃问题可能是由于memcpy复制的不正确的大小(更新后跟其他评论:在这种情况下,它是由于禁止直接复制)。
如果你现在得到一个奇怪的图像,这可能是另一个问题 - 我怀疑图像格式,尝试修改它。
答案 1 :(得分:2)
如yakobom所述,您正在尝试将YUV_420_888图像直接复制到RGBA_8888目的地(默认情况下,如果您尚未更改)。这不仅仅是一个memcpy。
您需要实际转换数据,并且需要确保不要复制太多 - 示例代码复制width*height*4
个字节,而YUV_420_888图像仅占用{{1} }字节(大致)。因此,当您复制时,您正在缓冲区的末尾运行。
您还必须考虑Java级别提供的步幅以正确索引到缓冲区。来自Microsoft的This link有一个有用的图表。
如果您只关心亮度(因此灰度输出就足够了),只需将亮度通道复制到R,G和B通道即可。伪代码大概是:
stride*height*1.5
您需要从Image对象中读取srcLumaStride(第一个Plane的行间距)并通过JNI向下传递。