matlab中读取PPM格式的图像程序.docx
《matlab中读取PPM格式的图像程序.docx》由会员分享,可在线阅读,更多相关《matlab中读取PPM格式的图像程序.docx(2页珍藏版)》请在三一办公上搜索。
1、matlab中读取PPM格式的图像程序function I,w,h,level = ppmread(path) %* % Title: Ppmread % Input Parameter: path of the ppm file % Description: This file reads .ppm file % open the file in read mode f= fopen(path,r); A = 0 ; % Ascii flag % ignore the comments in the file a = fscanf(f,%s,1); while(a(1)=#) a = fsc
2、anf(f,%s,1); end % check magic number if (strcmp(a,P3)=0) &(strcmp(a,P6)=0) while(a(1)=#) a = fscanf(f,%s,1); end display(its not ppm file); else display(its ppm file); if(strcmp(a,P3) A = 1; end a = fscanf(f,%s,1); while(a(1) = #) b = fgets(f); % throw away the comments line a= fscanf(f,%s,1); % re
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- matlab 读取 PPM 格式 图像 程序
链接地址:https://www.31ppt.com/p-3161188.html