欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

图像灰度和直方图

程序员文章站 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('灰度图像直方图');
相关标签: 图像处理