摘要:
1.读入照片 控制输出的标志定义 1)读入的照片由filename 配置,这里照片必须放在该目录下。如:filename = 'Koala.jpg' 2)filename找到字符串的起始位置。findstr('Koala.jpg','.jpg') = 6,所以就可以取到去掉后缀名的文件名 3)得到一 阅读全文
摘要:
因为 profile 是所有用户都可以使用的,类似于 windows 中的系统变量 而 .bashrc 只有该所属用户可使用,类似于windows 中的用户变量 http://blog.chinaunix.net/uid-29532371-id-4616525.html 阅读全文
摘要:
设置要共享的文件夹 阅读全文
摘要:
1 需求 在文件 h264.txt 中的数据如图1,读入该文件中的数据,然后将第1列的地址删除,然后将数据输出到h264_out.txt中: 图1 h264.txt 数据截图 图2 输出文件 h264_out.txt 数据截图 2 读取文件 try: filename = 'h264.txt' # 阅读全文
摘要:
H264.TXT文件 来源于板子上串口输出的数据,需要把该数据转成 *.h264用 H264的软件打开观察 txt中数据截图如下: MATLAB读入数据的代码: clc;close all;clear ; filename = 'H264_fr4.TXT'; fid = fopen(filename 阅读全文
摘要:
阅读的书籍是: Python for Informatics: Exploring Information 网址: http://www.pythonlearn.com/book.php 编写的代码一: 1 fhand = open('mbox-short.txt') 2 for line in f 阅读全文
摘要:
clc;close all;clear %read image % RGBimga = imread('bmpinput_1080p.bmp'); RGBimga = imread('bmpinput_720p.bmp'); RGBimgb = RGBimga*0; RGBimga = RGBimg 阅读全文
摘要:
1 YUV2RGB的模块如下: 1 module yuv2rgb( 2 clk, //时钟输入 3 rstn, //复位输入,低电平复位 4 5 y_in, //变换前Y分量输出 6 cb_in, //变换前Cb分量输出 7 cr_in, //变换前Cr分量输出 8 ena_in, //待变换数据使 阅读全文