clc;%clc的作用就是清屏幕
clear;%clear是删除所有的变量
close all;%close all是将所有打开的图片关掉。
image=imread('E:\我的桌面\MATLAB\练习\2.jpg');%绝对路径的
R=image(:,:,1);
G=image(:,:,2);
B=image(:,:,3);
hr=imhist(R);
hg=imhist(G);
hb=imhist(B);
x=0:1:255;
figure
plot(x,hr,'r');
hold on
plot(x,hg,'g');
hold on
plot(x,hb,'b');
figure;imshow(image);