码迷,mamicode.com
首页 > 其他好文 > 详细

HAL层Camera模块Dump图片--工作积累

时间:2014-08-06 11:35:31      阅读:377      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   数据   for   问题   ar   

导出YUN数据进行调试,分析问题:

 1 // dump图像数据  事列
 2 void   dump(const int width, const int height, void *yBuf, void *uvBuf)
 3 {
 4        char buf[256] = {\0};
 5        FILE* file_fd = fopen(buf, "wb");
 6        snprintf(buf, sizeof(buf), "/data/Effect/%dx%dvideodenoiser%d.yuv",width,height,4);
 7        file_fd = fopen(buf, "wb");
 8          if (file_fd != NULL) {
 9         void *data = NULL;
10         int written_len = 0;
11         data = (void *)((uint8_t *)yBuf);
12          written_len += fwrite( data, width*height, 1, file_fd);
13         if(NULL == uvBuf)
14             data = (void *)((uint8_t *)yBuf+ width*height);
15         else
16             data = (void *)((uint8_t *)uvBuf);
17         written_len += fwrite( data, width*height/2, 1, file_fd);
18         fclose(file_fd);
19         TSLOG("%s: dump-------sucess%d",__func__,4);
20         } else {
21         TSLOG("%s: fail t open file for image dumping", __func__); 
22 }

 

HAL层Camera模块Dump图片--工作积累,布布扣,bubuko.com

HAL层Camera模块Dump图片--工作积累

标签:style   blog   color   os   数据   for   问题   ar   

原文地址:http://www.cnblogs.com/cy568searchx/p/3894005.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!