当前位置:  开发笔记 > 编程语言 > 正文

是否可以将Camera2与Google Vision API一起使用

如何解决《是否可以将Camera2与GoogleVisionAPI一起使用》经验,为你挑选了1个好方法。

是否可以仅使用带有Google Vision API的Camera2检测脸部?我找不到整合它的方法.



1> Ezequiel Adr..:

是的,可以将Camera2 API与Google Vision API一起使用.

首先,Google Vision API面部检测器接收用于分析(检测面部及其地标)的Frame对象.

Camera1 API以NV21图像格式提供预览帧,非常适合我们.Google Vision Frame.Builder支持setImageData(NV16中的ByteBuffer,NV21或YV12图像格式)和setBitmap,以使用位图作为预览帧进行处理.

您的问题是Camera2 API以不同的格式提供预览帧.这是YUV_420_888.要使一切正常,您必须将预览帧转换为支持的格式之一.

从ImageReader获取Camera2预览帧作为图像后,您可以使用此功能将其转换为支持的格式(在本例中为NV21).

private byte[] convertYUV420888ToNV21(Image imgYUV420) {
    // Converting YUV_420_888 data to YUV_420_SP (NV21).
    byte[] data;
    ByteBuffer buffer0 = imgYUV420.getPlanes()[0].getBuffer();
    ByteBuffer buffer2 = imgYUV420.getPlanes()[2].getBuffer();
    int buffer0_size = buffer0.remaining();
    int buffer2_size = buffer2.remaining();
    data = new byte[buffer0_size + buffer2_size];
    buffer0.get(data, 0, buffer0_size);
    buffer2.get(data, buffer0_size, buffer2_size);
    return data;
}

然后,您可以使用返回的byte []创建Google Vision框架:

outputFrame = new Frame.Builder()
    .setImageData(nv21bytes, mPreviewSize.getWidth(), mPreviewSize.getHeight(), ImageFormat.NV21)
    .setId(mPendingFrameId)
    .setTimestampMillis(mPendingTimeMillis)
    .setRotation(mSensorOrientation)
    .build();

最后,使用创建的Frame调用检测器:

mDetector.receiveFrame(outputFrame);

无论如何,如果您想了解更多相关信息,可以在GitHub上免费测试我的工作示例:Camera2Vision.我希望我帮助过:)

推荐阅读
Gbom2402851125
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有