为 CameraX ImageAnalysis 进行 YUV 到 RGB 的转换
CameraX 是一个旨在帮助开发者简化相机应用开发工作的 Jetpack 支持库。它支持多种诸如 ImageCapture、Preview 和 ImageAnalysis 这种可以和 ML Kit 或 TensorFlow Lite 无缝结合的使用场景。这为文本识别、图像标记等应用的开发提供了可能,甚至还可以支持使用开发者自己训练的 TensorFlow Lite 模型进行物体的识别和检测。然而,在 CameraX 和这些库之间进行图像格式转换的工作还是比较费时费力的。本文我们会介绍最近为 CameraX ImageAnalysis 带来的新功能,支持从 YUV 到 RGB 的转换,我们会介绍一些背景知识,为什么会引入该功能,并会以少量的示例代码来介绍如何使用它。
CameraX
https://developer.android.google.cn/training/cameraxML Kit
https://developers.google.cn/ml-kitTensorFlow Lite
https://www.tensorflow.org/lite
背景
CameraX 使用 YUV420_888 来生成图像,该格式有 8 位的 Luma(Y)、Chroma(U, V) 和 Paddings(P) 三个通道。YUV 是一种通用且灵活的格式,它支持不同的设备上的 OEM 变体,这就覆盖了很多 ImageAnalysis 的使用场景。然而很多应用依然依赖 RGB 格式。在我们的开发者社区,YUV 到 RGB 的转换是呼声最高的功能之一,因为 RGB 格式流行且易于使用,且有时需要在 TensorFlow Lite 模型中使用。让我们先来看看 YUV 和 RGB 格式。
YUV420_888
https://developer.android.google.cn/reference/android/graphics/ImageFormat#YUV_420_888
YUV_420_888 格式
YUV 格式也可以被称为 "YCbCr",它包括平面 (planar,如 I420)、半平面 (semi-planar,如 NV21/NV12) 和打包 (packed,如 UYVY) 格式。YUV_420_888 是一种通用的 YCbCr 格式,它能够表示任何 4:2:0 色度二次采样的平面或半平面缓冲区 (但不完全交错),每个颜色样本有 8 位。且能够保证 Y 平面不会与 U/V 平面交错 (且像素步长始终为 1),以及 U/V 平面总是具有相同的行步长和像素步长。
RGBA_8888 格式
RGBA_8888
https://en.wikipedia.org/wiki/RGBA_color_model
API 实现
使用 Java/Kotlin
使用 Renderscript 渲染脚本 原生方案 (使用 C/C++ 和 NDK)
Renderscript
https://developer.android.google.cn/guide/topics/renderscript/compute废弃
https://developer.android.google.cn/guide/topics/renderscript/migrate#scripts
Libyuv
https://chromium.googlesource.com/libyuv/libyuv/
ImageProxy
https://developer.android.google.cn/reference/androidx/camera/core/ImageProxySurface
https://developer.android.google.cn/reference/android/view/SurfacedequeueInputImage()
https://developer.android.google.cn/reference/android/media/ImageWriter#dequeueInputImage()ImageReader
https://developer.android.google.cn/reference/android/media/ImageReaderImageWriter
https://developer.android.google.cn/reference/android/media/ImageWriterANativeWindow
https://developer.android.google.cn/ndk/reference/group/a-native-window
libyuv
https://chromium.googlesource.com/libyuv/libyuv/
API 使用
CameraX 1.1.0-alpha08
https://developer.android.google.cn/jetpack/androidx/releases/camera#1.1.0-alpha08
PixelFormat.RGBA_8888
https://developer.android.google.cn/reference/android/graphics/PixelFormat#RGBA_8888
ImageFormat.YUV_420_888
https://developer.android.google.cn/reference/android/graphics/ImageFormat#YUV_420_888
性能
Renderscript
https://github.com/android/camera-samples/blob/master/CameraUtils/lib/src/main/java/com/example/android/camera/utils/YuvToRgbConverter.kt
总结
我们在 CameraX ImageAnalysis pipeline 中支持了 YUV 到 RGB 的转换。用户现在可以简单地为一个 ImageAnalysis 用例选择一个输出格式 (YUV_420_888 或 RGBA_8888),并用于其他库之中。而这仅仅是一个开始,我们还计划在 CameraX ImageAnalysis pipeline 中增加更多的图像处理功能,并将其扩展到其他的用例中 (例如 ImageCapture 或 Preview 等)。如果您有任何功能上的需求,请联系我们。
YUV 到 RGB 转换的示例代码可以在 GitHub 中查看。若需了解更多关于 CameraX 的消息,请参考官方文档。若要了解关于 CameraX 的最新进展,您可以加入 CameraX 讨论区。另外,您的反馈对我们来说十分具有价值,欢迎随时在 CameraX 讨论区留言或在官方的 Issue Tracker 中给我们反馈。
GitHub
https://github.com/android/camera-samples/blob/main/CameraXTfLite/app/src/main/java/com/example/android/camerax/tflite/CameraActivity.kt#L170官方文档
https://developer.android.google.cn/training/cameraxCameraX 讨论区
https://groups.google.com/a/android.com/g/camerax-developersIssue Tracker
https://issuetracker.google.com/issues/new?component=618491&template=1257717
相关引用
CameraX 发布说明
https://developer.android.google.cn/jetpack/androidx/releases/camera
开始使用 CameraX
https://developer.android.google.cn/codelabs/camerax-getting-started#0
CameraX Github 用例
https://github.com/android/camera-samples
YUV 格式 Wiki
https://wiki.videolan.org/YUV
推荐阅读