数字图像处理实验(10):PROJECT 05-01 [Multiple Uses],Noise Generators

来源:互联网 发布:如何下载别人网站源码 编辑:程序博客网 时间:2024/06/05 04:49

实验要求:

Objective:
To know how to generate noise images with different probability density functions (distributions). The noise images are useful in simulation for image enhancement and image restoration.
Main requirements:
Ability of programming with C, C++, or Matlab.
Instruction manual:
This is a generic project, in the sense that the programs developed here are used in several of the projects that follow. See Fig. 5.2 for the shapes and parameters of the following noise probability density functions.
(a) Find (or develop) a program to add Gaussian noise to an image. You must be able to specify the noise mean and variance.
(b) Find (or develop) a program to add salt-and-pepper (impulse) noise to an image. You must be able to specify the probabilities of each of the two noise components.

本实验比较简单,目的就只是往图片中添加各种噪声,比如高斯噪声或者椒盐噪声。还有一点要求就是要能够向程序指定概率等等的一些参数。

给出原图像:
这里写图片描述

实验代码:

% PROJECT 05-01 [Multiple Uses] Noise Generatorsclose all;clc;clear all;% 原图像img =imread('Fig5.03.jpg');figure;subplot(1,3,1);imshow(img);title('original image');% 添加高斯噪声img_nse1 = imnoise(img, 'gaussian', 0.2, 0.01);subplot(1,3,2);imshow(img_nse1);title('Plus gaussian noise');disp('高斯噪声');disp(['mean: ', num2str(0.2), ' variance: ', num2str(0.01)]);% 添加泊松噪声% img_nse2 = imnoise(img, 'poisson');% figure;% imshow(img_nse2);% title('Plus poisson noise');% 添加椒盐噪声img_nse3 = imnoise(img, 'salt & pepper', 0.2);subplot(1,3,3);imshow(img_nse3);title('Plus salt & pepper noise');disp('椒盐噪声');disp(['probability: ', num2str(0.2)]);

实验结果:
这里写图片描述

注释主要在代码中,实验现象也很明显,分别显示了添加高斯噪声和椒盐噪声的图像。

阅读全文
0 0
原创粉丝点击