博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
matlab读写pgm文件(转)
阅读量:6537 次
发布时间:2019-06-24

本文共 1181 字,大约阅读时间需要 3 分钟。

matlab读写pgm文件

读文件 1 @4 l# |, g3 m/ X$ g$ p+ t
%function disp_
pgm(
pgm_image_name)
%不支持文件中有注释
pgm_image_name='tmp.
pgm';
f = fopen(
pgm_image_name,'r');
if f == -1
error(['Could not open file ',
pgm_image_name]);
end / t2 V; a( c$ l1 A$ C' j6 P
[imgsize, num]=fscanf(f, 'P5\n%d\n%d\n255\n'); . J1 [& _. g! k; I( x$ E
if num~=2,error('error num');end
image=[];
for h=1:imgsize(2)
image=[image fread(f,imgsize(1),'uint8')];
end
image=image.'; 3 ?4 @# c% O% D2 O   v3 ]
fclose(f); . I, \4 B! Y( @5 r7 \" n
imshow(image);
写文件
% Load image
% image = imread(imageFile);
% If you have the Image Processing Toolbox, you can uncomment the following 9 p, m5 N" g7 v4 [! j2 P
% lines to allow input of color images, which will be converted to grayscale.
if isrgb(image)
image = rgb2gray(image); 6 W/ I+ U; o9 B; |   I0 c3 U
end + q7 [1 P, r: I& t& e) m/ {
[rows, cols] = size(image); 
% Convert into PGM imagefile, readable by "keypoints" executable
f = fopen('tmp.
pgm', 'w');
if f == -1 / p/ D' b: r- F2 q
error('Could not create file tmp.
pgm.'); ' J/ R' e6 F! b3 L" ?- `
end & G( C& n/ {8 I' ?
fprintf(f, 'P5\n%d\n%d\n255\n', cols, rows); 1 x9 ?5 x4 M' ^
fwrite(f, image', 'uint8');
fclose(f);

转载地址:http://scbdo.baihongyu.com/

你可能感兴趣的文章
git push被忽略的文件 处理
查看>>
C#中用ILMerge将所有引用的DLL打成一个DLL文件
查看>>
PHP生成HTML静态页面
查看>>
Makefile 中:= ?= += =的区别【转】
查看>>
使用makecontext实现用户线程【转】
查看>>
Comet:基于 HTTP 长连接的“服务器推”技术
查看>>
BZOJ 2733: [HNOI2012]永无乡 启发式合并treap
查看>>
四种方法校验数组中是否包含某个指定的字符串
查看>>
29、Java并发性和多线程-非阻塞算法
查看>>
安装OpenResty开发环境
查看>>
第0课 从0开始
查看>>
hadoop无法启动DataNode问题
查看>>
java泛型中<?>和<T>区别
查看>>
这里是指推送通知跟NSNotification有区别:
查看>>
Linux中断(interrupt)子系统之一:中断系统基本原理【转】
查看>>
用户ID的代码生成
查看>>
win7经常出现“关闭xxxx前您必须关闭所有会话框”
查看>>
SNMP安全配置的两种方法(也可同一时候兼顾配置两种方法)
查看>>
react-native 常见操作 及 git 补充
查看>>
MongoDB 自己定义函数
查看>>