图像灰度和直方图
程序员文章站
2024-03-21 12:57:46
...
figure;
I=imread('G:\matlab\img\1.jpg');
subplot(1,3,1);imshow(I);
title('原始图像');
imwrite(I,'test.png');
subplot(1,3,2);
y=rgb2gray(I);
imshow(y);
title('灰度图');
subplot(1,3,3);
imhist(y);
title('灰度图像直方图');