在我们的应用程序中,我们需要传输视频,我们使用Camera类来捕获缓冲区并发送到目的地,
我将格式设置为YV12作为接收缓冲区的Camera参数,
对于500X300缓冲区,我们收到230400字节的缓冲区,
我想知道,这是预期的缓冲区大小吗?
我相信大小将是
Y Plane = width * height = 500X300 = 150000
U Plane = width / 2 * height / 2 = = 37500
V Plane = width / 2 * height / 2 = = 37500
========
225000
========
任何人都可以解释我,如果我需要获得每个组件的步幅值,我怎么能得到那个
有没有办法得到它?
答案 0 :(得分:3)
我可以告诉你如何从这里得到int rgb []:
public int[] decodeYUV420SP(byte[] yuv420sp, int width, int height) {
final int frameSize = width * height;
int rgb[] = new int[width * height];
for (int j = 0, yp = 0; j < height; j++) {
int uvp = frameSize + (j >> 1) * width, u = 0, v = 0;
for (int i = 0; i < width; i++, yp++) {
int y = (0xff & ((int) yuv420sp[yp])) - 16;
if (y < 0)
y = 0;
if ((i & 1) == 0) {
v = (0xff & yuv420sp[uvp++]) - 128;
u = (0xff & yuv420sp[uvp++]) - 128;
}
int y1192 = 1192 * y;
int r = (y1192 + 1634 * v);
int g = (y1192 - 833 * v - 400 * u);
int b = (y1192 + 2066 * u);
if (r < 0)
r = 0;
else if (r > 262143)
r = 262143;
if (g < 0)
g = 0;
else if (g > 262143)
g = 262143;
if (b < 0)
b = 0;
else if (b > 262143)
b = 262143;
rgb[yp] = 0xff000000 | ((r << 6) & 0xff0000)
| ((g >> 2) & 0xff00) | ((b >> 10) & 0xff);
}
}
return rgb;
}
答案 1 :(得分:0)
答案 2 :(得分:0)
我认为这很简单。 来自android的chekout YUVImage类。您可以从来自摄像机预览的byte []数据构建YUV图像。 你可以这样写:
//width and height you get it from camera properties, image width and height of camera preview
YuvImage image=new YuvImage(data, ImageFormat.NV21, int width, int height, null);
byte[] newData = image.getYuvData();
//or if you want int format = image.getYuvFormat();
答案 3 :(得分:0)
这是一个相当古老的问题,但我已经在同一个问题上挣扎了几天。所以我决定写一些评论来帮助别人。 Android开发者网站(here)中描述的YV12似乎不是YV12而是IMC1。页面说y-stride和uv-stride都应该以16字节对齐。
此page表示:
对于YV12,接收的图像缓冲区不一定紧密 打包,因为在每行像素数据的末尾可能有填充, 如YV12所述。
基于以上评论,我使用python命令行计算它:
>>> w = 500
>>> h = 300
>>> y_stride = (500 + 15) / 16 * 16.0
>>> y_stride
512.0
>>> y_size = y_stride * h
>>> y_size
153600.0
>>> uv_stride = (500 / 2 + 15) / 16 * 16.0
>>> uv_stride
256.0
>>> u_size = uv_stride * h / 2
>>> v_size = uv_stride * h / 2
>>> size = y_size + u_size + v_size
>>> size
230400.0