zoukankan      html  css  js  c++  java
  • 数字图像处理实验(10):PROJECT 05-01 [Multiple Uses],Noise Generators 标签: 图像处理MATLAB 2017-05-26 23:36

    实验要求:

    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 Generators
    close 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)]);

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

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

  • 相关阅读:
    笔记本搜不到无线网络连接[转]
    局域网IP冲突
    CFree 修改/添加编译配置环境(Build Configuration)
    字母索引网页
    NAOChoregraphe"单机使用许可证使用了多次"问题解决方案
    redis源码笔记-dict.c
    redis源码笔记-sds
    redis源码笔记-testhelp
    redis源码笔记-endian
    redis源码笔记-dict.h
  • 原文地址:https://www.cnblogs.com/xuhongbin/p/7134160.html
Copyright © 2011-2022 走看看