python将YUV420P文件转PNG图片格式的两种方法


Posted in Python onJanuary 22, 2021

方法一:

import os
import cv2 as cv
import numpy as np


# 读取yuv420p的一帧文件,并转化为png图片
if __name__ == '__main__':
  filepath = 'one_frame_of_highway.yuv'
  binfile = open(filepath, 'rb')
  size = os.path.getsize(filepath)
  image_width = 352
  image_hight = 288
  image_y = [[0] * image_width for i in range(image_hight)]
  image_u = [[0] * image_width for i in range(image_hight)]
  image_v = [[0] * image_width for i in range(image_hight)]
  for r in range(image_hight):
    for c in range(image_width):
      image_y[r][c] = binfile.read(1)[0]
  Image_Y = np.array(image_y)

  for r in range(int(image_hight / 2)):
    for c in range(int(image_width / 2)):
      pixel = binfile.read(1)[0]
      image_u[2 * r + 0][2 * c + 0] = pixel
      image_u[2 * r + 1][2 * c + 0] = pixel
      image_u[2 * r + 0][2 * c + 1] = pixel
      image_u[2 * r + 1][2 * c + 1] = pixel
  Image_U = np.array(image_u)

  for r in range(int(image_hight / 2)):
    for c in range(int(image_width / 2)):
      pixel = binfile.read(1)[0]
      image_v[2 * r + 0][2 * c + 0] = pixel
      image_v[2 * r + 0][2 * c + 1] = pixel
      image_v[2 * r + 1][2 * c + 0] = pixel
      image_v[2 * r + 1][2 * c + 1] = pixel
  Image_V = np.array(image_v)
  binfile.close()
  compose = np.array([Image_Y, Image_V, Image_U]).transpose([1, 2, 0]).astype(np.uint8)
  Image = cv.cvtColor(compose, cv.COLOR_YUV2RGB)
  cv.imwrite("one_frame_of_highway.yuv.png", Image)

方法二:

ffmpeg -s 352x288 -i one_frame_of_highway.yuv one_frame_of_highway.png

highway视频网址:http://trace.eas.asu.edu/yuv/index.html

附录:

将yuv文件转化为一帧帧yuv文件

#include <stdio.h>
#include <fcntl.h>
#include <zconf.h>
#include <stdint.h>
#include <strings.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
int File_Size(int fd) {
  struct stat st;
  fstat(fd, &st);
  return st.st_size;
}

int Frame_Size_Of_Cif() {
  int width = 352;
  int heigh = 288;
  int Y_SIZE = width * heigh;
  int U_SIZE = Y_SIZE / 4;
  int V_SIZE = Y_SIZE / 4;
  int Frame_SIZE = Y_SIZE + U_SIZE + V_SIZE;
  return Frame_SIZE;
}

int Frames_Of_Cif_File(int fd) {
  if (fd < 0) {
    printf("Invalid FD!");
    return -1;
  }
  int Frame_SIZE = Frame_Size_Of_Cif();
  int fd_size = File_Size(fd);
  return fd_size / Frame_SIZE;
}

void Abstract_Frame_From_CIF_File(int fd,char *Path_And_Prefix_Img,int Len) {
  int Frame_SIZE = Frame_Size_Of_Cif();
  char file[128];
  memset(file,0,128);
  memcpy(file,Path_And_Prefix_Img,Len);
  uint8_t buf[Frame_SIZE];
  int ret = -1;
  int frames = 0;
  while ((ret = read(fd, buf, Frame_SIZE))) {
    frames += 1;
    uint64_t len = strlen(file);
    sprintf(file + len, "%d", frames);
    len = strlen(file);
    sprintf(file + len, "%s", ".yuv");
    int fdw = open(file, O_RDWR | O_CREAT, 0777);
    write(fdw, buf, ret);
    memset(file,0,128);
    memcpy(file,Path_And_Prefix_Img,Len);
    close(fdw);
  }
  printf("Abstract %d frames!\n", frames);
}


int main() {

  int fd = open("./yuv420p_352x288.yuv", O_RDONLY);
  Abstract_Frame_From_CIF_File(fd,"/home/liu/Frames/Frames_",strlen("/home/liu/Frames/Frames_"));
  close(fd);
  return 0;
}

以上就是python将YUV420P文件转PNG图片格式的两种方法的详细内容,更多关于python将YUV420P文件转PNG的资料请关注三水点靠木其它相关文章!

Python 相关文章推荐
python使用scrapy解析js示例
Jan 23 Python
Python中super关键字用法实例分析
May 28 Python
Python函数中*args和**kwargs来传递变长参数的用法
Jan 26 Python
利用Celery实现Django博客PV统计功能详解
May 08 Python
分享一个可以生成各种进制格式IP的小工具实例代码
Jul 28 Python
简述Python2与Python3的不同点
Jan 21 Python
python3 字符串/列表/元组(str/list/tuple)相互转换方法及join()函数的使用
Apr 03 Python
利用Django模版生成树状结构实例代码
May 19 Python
python 字典操作提取key,value的方法
Jun 26 Python
linux下python中文乱码解决方案详解
Aug 28 Python
python去除删除数据中\u0000\u0001等unicode字符串的代码
Mar 06 Python
keras绘制acc和loss曲线图实例
Jun 15 Python
如何使用Python进行PDF图片识别OCR
Jan 22 #Python
详解pandas映射与数据转换
Jan 22 #Python
python实现简单的井字棋游戏(gui界面)
Jan 22 #Python
Django url 路由匹配过程详解
Jan 22 #Python
浅析pandas随机排列与随机抽样
Jan 22 #Python
python 合并多个excel中同名的sheet
Jan 22 #Python
Python读取pdf表格写入excel的方法
Jan 22 #Python
You might like
JS实现php的伪分页
2008/05/25 PHP
php防攻击代码升级版
2010/12/29 PHP
生成随机字符串和验证码的类的PHP实例
2013/12/24 PHP
使用php记录用户通过搜索引擎进网站的关键词
2014/02/13 PHP
destoon实现首页显示供应、企业、资讯条数的方法
2014/07/15 PHP
[原创]CI(CodeIgniter)简单统计访问人数实现方法
2016/01/19 PHP
使用PHP处理数据库数据如何将数据返回客户端并显示当前状态
2016/02/16 PHP
yii2 RBAC使用DbManager实现后台权限判断的方法
2016/07/23 PHP
在Laravel5.6中使用Swoole的协程数据库查询
2018/06/15 PHP
初学JavaScript_03(ExtJs Grid的简单使用)
2008/10/02 Javascript
HTML页面滚动时获取离页面顶部的距离2种实现方法
2013/09/05 Javascript
常用的JavaScript验证正则表达式汇总
2013/11/26 Javascript
js Dialog 去掉右上角的X关闭功能
2014/04/23 Javascript
用js格式化金额可设置保留的小数位数
2014/05/09 Javascript
jQuery实现checkbox全选的方法
2015/06/10 Javascript
js实现圆盘记速表
2015/08/03 Javascript
全面解析多种Bootstrap图片轮播效果
2016/05/27 Javascript
js将滚动条滚动到指定位置的简单实现方法
2016/06/25 Javascript
如何解决jQuery EasyUI 已打开Tab重新加载问题
2016/12/19 Javascript
vue-resourse将json数据输出实例
2017/03/08 Javascript
vue高德地图之玩转周边
2017/06/16 Javascript
通俗解释JavaScript正则表达式快速记忆
2017/08/23 Javascript
vue.js在标签属性中插入变量参数的方法
2018/03/06 Javascript
webpack 静态资源集中输出的方法示例
2018/11/09 Javascript
react中Suspense的使用详解
2019/09/01 Javascript
基于Layui自定义模块的使用方法详解
2019/09/14 Javascript
使用优化器来提升Python程序的执行效率的教程
2015/04/02 Python
python中for循环把字符串或者字典添加到列表的方法
2019/07/20 Python
python程序 线程队列queue使用方法解析
2019/09/23 Python
anaconda安装pytorch1.7.1和torchvision0.8.2的方法(亲测可用)
2021/02/01 Python
Made in Design意大利:现代家具、名家灯具和装饰
2020/10/27 全球购物
公司财务工作总结的自我评价
2013/11/23 职场文书
市政管理求职信范文
2014/05/07 职场文书
项目经理任命书内容
2014/06/06 职场文书
低端且暴利的线上线下创业项目分享
2019/09/03 职场文书
Python使用pandas导入csv文件内容的示例代码
2022/12/24 Python