数字图像处理实验.docxVIP

  • 28
  • 0
  • 约 24页
  • 2017-02-11 发布于重庆
  • 举报
数字图像处理实验

计算机图像处理实验报告应用matlab语言编写显示一幅灰度图像、二值图像、索引图像及彩色图像的程序并进行相互之间的转换:(1)读入并显示彩色图像123I=IMREAD(‘123.JPG’)%读取文件Inshow(I);%直接显示文件彩色图像123转为灰色图像gray gray=rgb2gray(I); subplot(121); imshow(I) subplot(122); imshow(gray); title(彩色图像转为灰色图像)彩色图像装换为索引图像[ind0,map]=rgb2ind(I,0.2);subplot(121);imshow(I);subplot(122);imshow(ind0);title(彩色图像转为索引图像)索引图像转为彩色图像rgb1=ind2rgb(ind0,map);subplot(121);imshow(ind0);subplot(122);imshow(rgb1);title(索引图像转为彩色图像)彩色图像转换为二值图像bw=im2bw(I,0.5);subplot(121);imshow(I);subplot(122)imshow(bw);title(彩色图像转二值图像)灰色图像转换为索引图像[ind1,map]=gray2ind(gray,128);subplot(121);imshow(gray);subplot(122)imshow

文档评论(0)

1亿VIP精品文档

相关文档