码迷,mamicode.com
首页 > 其他好文 > 详细

常用图像额文件格式及类型

时间:2017-04-29 17:35:11      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:class   技术   文件格式   span   height   blog   code   tla   map   

1、显示一幅二值图像:

>> bw = zeros(90,90);
>> bw(2:2:88,2:2:88) = 1;
>> imshow(bw);
>> 

技术分享

2、利用image函数显示一幅索引图像:

 

>> [X,MAP] = imread(E:\STUDY_software\Matlab2016\images\11.jpg);
>> image(X);
>> colormap(MAP)

 

技术分享

3、利用image来显示一幅RGB图像

>> RGB = imread(E:\STUDY_software\Matlab2016\images\2.jpg);
>> image(RGB);
>> f RGB(12,9,:)%要确定像素(129)的颜色

技术分享

ans(:,:,1) =

  200


ans(:,:,2) =

  204


ans(:,:,3) =

  205

常用图像额文件格式及类型

标签:class   技术   文件格式   span   height   blog   code   tla   map   

原文地址:http://www.cnblogs.com/hit-yhj/p/6785413.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!