matlab 基本图像处理命令

Posted rolingball-creation

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab 基本图像处理命令相关的知识,希望对你有一定的参考价值。

%原图像显示
picture_read = imread(‘1.jpg‘);
subplot(2,4,1);
figure0 = imshow(picture_read);
title(‘原图‘)


%图像灰度化
picture_gray = rgb2gray(picture_read);
subplot(2,4,2);
figure1=imshow(picture_gray);
title(‘图像灰度化‘)


%直方图均衡
picture_balance = histeq(picture_gray);
subplot(2,4,3);
figure2 = imshow(picture_balance);
title(‘直方图均衡‘)


%图像加上高斯噪声
picture_gaussian = imnoise(picture_gray,‘gaussian‘);
subplot(2,4,4);
figure3 = imshow(picture_gaussian);
title(‘加上高斯噪声‘)


%图像加上椒盐噪声
picture_salt = imnoise(picture_gray,‘salt & pepper‘);
subplot(2,4,5);
figure4 = imshow(picture_salt);
title(‘加上椒盐噪声‘)


%图像加上泊松噪声
picture_poisson = imnoise(picture_gray,‘poisson‘);
subplot(2,4,6);
figure5 = imshow(picture_poisson);
title(‘加上泊松噪声‘);

%绘制灰度直方图

figure, imhist(picture_gray);

以上是关于matlab 基本图像处理命令的主要内容,如果未能解决你的问题,请参考以下文章

matlab 调用图像放大命令

Matlab 图像处理基本操作

Matlab 图像处理基本操作

Matlab图像怎么处理?Matlab图像处理的基本操作

5 Matlab 的变量与数据类型

Matlab图像形态学处理—开操作和闭操作