07 2020 档案

摘要:dd 命令切割合并文件 /tmp # dd if=a.bin of=c.bin bs=128k skip=18 //一个块为128K,跳过前18块。 18+1 records in 18+1 records out /tmp # dd if=a.bin of=b.bin bs=128k count= 阅读全文
posted @ 2020-07-23 14:43 michaelchengjl 阅读(710) 评论(0) 推荐(0) 编辑
摘要:python3 raw 数据转换为jpg 我们大家都知道,sensor 直接出来的裸数据为raw 数据,没有经过编解码,压缩。 我们需要将raw数据转换为其他格式比如jpg,png,bmp 人眼才能看到。好了,废话不多说,直接上代码。 import numpy as np import imagei 阅读全文
posted @ 2020-07-20 15:19 michaelchengjl 阅读(2738) 评论(0) 推荐(0) 编辑