17RGB转灰度

134 阅读1分钟

close all;clear all;clc;

X=imread('football.jpg'); %读取图像

I=rgb2gray(X); %将RGB图像转换为灰度图像

figure

subplot(121),imshow(X); %显示原图像

subplot(122),imshow(I); %显示转换后灰度图像

[X,map] = imread('trees.tif'); %读取图像

newmap = rgb2gray(map); %将彩色颜色映射表转换为灰度颜色映射表

figure subplot(121),imshow(X,map); %显示原图像

subplot(122),imshow(X,newmap); %显示转换后灰度图像