Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 6

Types of Noise


> I = imread(‘leaf.jpg’);

> imshow(I);

Red = I(:,:,1);

Green = ?

Blue = ?


Transform the Image (Color spaces)

HSV_image = rgb2HSV(I);


J = imnoise(I,'gaussian')

J = imnoise(I,'gaussian',m)

J = imnoise(I,'gaussian',m,var_gauss)
Noise removal
Noise removal

Noise Filters

- J = medfilt2(I) or medfilt3(I)

- J = medfilt2(I,[m n])

Where each output pixel contains the median
value in the m-by-n neighborhood around the
corresponding pixel in the input image.


Identify other types noise filters (At least 3)?

2-Dimensional Vs 3-D
Noise removal

Examples

Median Filter in Spatial Domain

4 3 2 1

3 1 2 4

5 1 6 2

2 3 5 6
Edge detection
Signal Processing

You might also like