资源简介
用来正确读取BMP文件信息:文件头:大小,长宽,颜色数目,关键颜色数目,每像素所用bit数,水平和垂直分辨率,压缩方式等
代码片段和文件信息
clc;clear all;close all;
fid=fopen( ‘t_2.bmp‘‘rb‘);%此处为想要读取的文件名
bfType=fread(fid2);
[s errmsg] = sprintf(‘the file type:%s‘char(bfType));
disp(s);
bfSize=fread(fid4);
fsize=bfSize(4)*256^3+bfSize(3)*256^2+bfSize(2)*256+bfSize(1);
[s errmsg] = sprintf(‘the file size:%d byte‘fsize);
disp(s);
bfOffbits=fread(fid8);
foffset=bfOffbits(8)*256^3+bfOffbits(7)*256^2+bfOffbits(6)*256+bfOffbits(5);
[s errmsg] = sprintf(‘offset to start of pixel data:%d byte‘foffset);
disp(s);
biSize=fread(fid4);
isize=biSize(4)*256^3+biSize(3)*256^2+biSize(2)*256+biSize(1);
[s errmsg] = sprintf(‘the size of infoheader:%d byte‘isize);
disp(s);
infoRead=fread(fid8);
biWidth=infoRead(4)*256^3+infoRead(3)*256^2+infoRead(2)*256+infoRead(1);
biHeight=infoRead(8)*256^3+infoRead(7)*256^2+infoRead(6)*256+infoRead(5);
[s errmsg] = sprintf(‘width: %d \nheight:%d ‘biWidthbiHeight);
disp(s);
infoRead=fread(fid28);
biBitCount=infoRead(4)*256+infoRead(3);
biCompression=infoRead(8)*256^3+infoRead(7)*256^2+infoRead(6)*256+infoRead(5);
biSizeImage=infoRead(12)*256^3+infoRead(11)*256^2+infoRead(10)*256+infoRead(9);
biXPelsPerMeter=infoRead(16)*256^3+infoRead(15)*256^2+infoRead(14)*256+infoRead(13);
biYPelsPerMeter=infoRead(20)*256^3+infoRead(19)*256^2+infoRead(18)*256+infoRead(17);
biCirUsed=infoRead(24)*256^3+infoRead(23)*256^2+infoRead(22)*256+infoRead(21);
biCirImportant=infoRead(28)*256^3+infoRead(27)*256^2+infoRead(26)*256+infoRead(25);
[s errmsg] = sprintf(‘the bit count: %d color count: %d‘...
biBitCount2^biBitCount);
disp(s);
if biCompression==0
disp(‘no compression‘);
else if biCompression==1
disp(‘RLE8 compression‘);
else if biCompression==2
disp(‘RLE4 compression‘);
else disp(‘bit fields compression‘);
end
end
end
if biXPelsPerMeter~=0
[s errmsg] = sprintf(‘horizontal resolution:%d pixels per meter‘biXPelsPerMeter);
disp(s);
else disp(‘default horizontal resulution‘);
end
if biYPelsPerMeter~=0
[s errmsg] = sprintf(‘verticular resolution:%d pixels per meter‘biYPelsPerMeter);
disp(s);
else disp(‘default verticular resulution‘);
end
if biSizeImage~=0
[s errmsg] = sprintf(‘image size: %d‘biSizeImage);
disp(s);
else disp(‘No compression‘);
end
if biCirUsed~=0
[s errmsg] = sprintf(‘%d color actually used‘biCirUsed);
disp(s);
else disp(‘all colors are used‘);
end
if biCirImportant~=0
[s errmsg] = sprintf(‘count of significant colors:%d‘biCirImportant);
disp(s);
else disp(‘all colors are significant‘);
end
skip=mod((4-mod(((biWidth * biBitCount)/8)4))4);
if ((biBitCount==24)&&(foffset==54))
for i=1:biHeight
if biHeight>0
indHeight=biHeight+1-i;
else indHeight=i;
end
for j=1:biWidth
colorRead=fread(fid3);
I(indHeightj1)=colorRead(3);
I(indHeightj2)=colorRead(2);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4011 2009-12-15 21:25 bmpdisplay.m
文件 238134 2001-12-10 15:24 t_2.bmp
----------- --------- ---------- ----- ----
242145 2
- 上一篇:各种调制方式的matlab程序
- 下一篇:空间离散点最小二乘直线拟合matlab代码
相关资源
- 空间离散点最小二乘直线拟合matlab代
- 各种调制方式的matlab程序
- MATLAB灰度共生矩阵纹理特征提取
- 借助matlab实现粗糙集属性约简算法
- 一个零水印算法的matlab实现
- 滑模变结构控制MATLAB仿真基本理论与
- 基于粒子群算法机器人路径规划matl
- matlab6.5以上版本安装advisor2002补丁
- RVM相关向量机实现代码matlab源码
- MATLAB遗传算法215695
- wave_vorticity.m
- hough变换的MATLAB程序
- 高斯混合模型matlab实现
- 语音识别的MATLAB代码
- SGP4的matlab源代码
- lorenz系统程序matlab仿真
- 一个小通信系统的MATLAB源代码仿真或
- 改进的维纳滤波的matlab代码
- 基于遗传算法的排序融合方法matlab程
- matlab仿真,lt码
-
Matlab Simuli
nk三维图形显示模块 - 剪切波变换MATLAB实现代码
- 双闭环直流调速MATLAB仿真模型基于传
- MATLAB辅助现代工程数字信号处理源程
- bpa转matpower
- PAM系统仿真matlab版本
- 基于matlab的RBF神经网络模式分类
- 利用matlab实现的简单的基于卡尔曼滤
- MATLAB2019A破解版百度云链接(已亲测
- Matlab2018B破解版云盘链接.rar
评论
共有 条评论