ImageProcessing5 SpatialFiltering1
ImageProcessing5 SpatialFiltering1
of
19
Interesting article in
the March, 2006
issue of Wired
magazine
Read it here
Digital Image Processing
Image Enhancement
(Spatial Filtering 1)
Neighbourhoods are
mostly a rectangle
around a central pixel
(x, y)
Any size rectangle Neighbourhood
y y
7
of
19
The Spatial Filtering Process
Origin x
a b c r s t
d
g
e
h
f
i
* u
x
v
y
w
z
Original Image Filter
Simple 3*3 Pixels
e 3*3 Filter
Neighbourhood
eprocessed = v*e +
r*a + s*b + t*c +
u*d + w*f +
y Image f (x, y) x*g + y*h + z*i
g ( x, y ) w( s, t ) f ( x s, y t )
s at b
* /9 /9 /9
1 1 1
99 106 98
95 90 85 1
/9 1
/9 1
/9
1
/9 100
104 1
/9 108
1
/9
Original Image Filter
Simple 3*3 /9 106
1
99 1
/9 198
/9
3*3 Smoothing Pixels
Neighbourhood /9 190
1
95 /9 185
/9 Filter
e = 1/9*106 +
1
/9*104 + 1/9*100 + 1/9*108 +
1
/9*99 + 1/9*98 +
y Image f (x, y) 1
/9*95 + 1/9*90 + 1/9*85
= 98.3333
The above is repeated for every pixel in the
original image to generate the smoothed image
11
of
19
Image Smoothing Example
The image at the top left
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
is an original image of
size 500*500 pixels
The subsequent images
show the image after
filtering with an averaging
filter of increasing sizes
– 3, 5, 9, 15 and 35
Notice how detail begins
to disappear
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
12
Image Smoothing Example
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
13
Image Smoothing Example
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
14
Image Smoothing Example
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
15
Image Smoothing Example
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
16
Image Smoothing Example
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
17
Image Smoothing Example
18
of
19
Weighted Smoothing Filters
More effective smoothing filters can be
generated by allowing different pixels in the
neighbourhood different weights in the
averaging function
– Pixels closer to the
1
/16 2
/16 /16
1
– Often referred to as a 1
/16 2
/16 /16
1
weighted averaging
Weighted
averaging filter
19
of
19
Another Smoothing Example
By smoothing the original image we get rid
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
21
Averaging Filter Vs. Median Filter
Example
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
22
Averaging Filter Vs. Median Filter
Example
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
23
Averaging Filter Vs. Median Filter
Example
24
of
Simple Neighbourhood Operations
19 Example
x
123 127 128 119 115 130
y
25
of
19
Strange Things Happen At The Edges!
e e e
y Image f (x, y)
26
of
Strange Things Happen At The Edges!
19 (cont…)
There are a few approaches to dealing with
missing edge pixels:
– Omit missing pixels
• Only works with some filters
• Can add extra code and slow down processing
– Pad the image
• Typically with either all white or all black pixels
– Replicate border pixels
– Truncate the image
– Allow pixels wrap around the image
• Can cause some strange image artefacts
27
of
Simple Neighbourhood Operations
19 Example
x
123 127 128 119 115 130
y
28
of
Strange Things Happen At The Edges!
19 (cont…)
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
Filtered Image:
Zero Padding
Filtered Image:
Wrap Around Edge Pixels
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
29
Strange Things Happen At The Edges!
(cont…)
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
30
Strange Things Happen At The Edges!
(cont…)
Images taken from Gonzalez & Woods, Digital Image Processing (2002)
of
19
31
Strange Things Happen At The Edges!
(cont…)
32
of
19
Correlation & Convolution
The filtering we have been talking about so
far is referred to as correlation with the filter
itself referred to as the correlation kernel
Convolution is a similar operation, with just
one subtle difference
a b c r s t eprocessed = v*e +
d
f
e
g h
e
* u
x
v
y
w
z
z*a + y*b + x*c +
w*d + u*e +
t*f + s*g + r*h
Original Image Filter
Pixels