将位图数组转换为 YUV (YCbCr NV21)
如何将 BitmapFactory.decodeFile() 返回的 Bitmap 转换为 YUV 格式(类似于相机的 onPreviewFrame() 以字节数组形式返回)?
How to convert Bitmap returned by BitmapFactory.decodeFile()
to YUV format (simillar to what camera's onPreviewFrame() returns in byte array)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
以下是将 Bitmap 转换为
Yuv(NV21)
格式的代码。Following is the code for converting Bitmap to
Yuv(NV21)
Format.如果使用java将Bitmap转换为YUV byte[]对你来说太慢,你可以尝试 libyuv 通过谷歌
If using java to convert Bitmap to YUV byte[] is too slow for you, you can try libyuv by Google
通过
OpenCV
库,您可以用一个本机OpenCV
行替换encodeYUV420SP
java 函数,并且它速度提高约 4 倍:完整示例:
Java 端:
本机端 (NDK):
Via
OpenCV
library you can replaceencodeYUV420SP
java function with one nativeOpenCV
line and it is ~4x more fastest:Complete example:
Java side:
Native side (NDK):
bmp 文件将为 RGB888 格式,因此您需要将其转换为 YUV。
我在 Android 中还没有遇到过任何可以为您执行此操作的 api。
但您可以自己执行此操作,请参阅此链接了解如何..
The bmp file will be in RGB888 format, so you will need to convert it to YUV.
I have not come across any api in Android that will do this for you.
But you can do this yourself, see this link on how to..
首先计算 RGB 数据:
y、u 和 v 是 yuv 矩阵的分量。
first you calculate the rgb data:
y, u and v are the composants of the yuv matrix.
这是一些实际有效的代码:
Here is some code that actually works: