christophoros nikou [email protected] · spatial smoothing and image approximation (cont...)) –the...

66
University of Ioannina - Department of Computer Science and Engineering Spatial Filtering Christophoros Nikou [email protected] Digital Image Processing

Upload: others

Post on 12-May-2020

4 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

University of Ioannina - Department of Computer Science and Engineering

Spatial Filtering

Christophoros Nikou

[email protected]

Digital Image Processing

Page 2: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

2

C. Nikou – Digital Image Processing (E12)

Contents

In this lecture we will look at spatial filtering

techniques:

– Neighbourhood operations

– What is spatial filtering?

– Smoothing operations

– What happens at the edges?

– Correlation and convolution

– Sharpening filters

– Combining filtering techniques

Page 3: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

3

C. Nikou – Digital Image Processing (E12)

Neighbourhood Operations

Neighbourhood operations simply operate

on a larger neighbourhood of pixels than

point operations

Neighbourhoods are

mostly a rectangle

around a central pixel

Any size rectangle

and any shape filter

are possible

Origin x

y Image f (x, y)

(x, y)Neighbourhood

Page 4: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

4

C. Nikou – Digital Image Processing (E12)

Simple Neighbourhood Operations

Some simple neighbourhood operations

include:

– Min: Set the pixel value to the minimum in the

neighbourhood

– Max: Set the pixel value to the maximum in the

neighbourhood

– Median: The median value of a set of numbers

is the midpoint value in that set (e.g. from the

set [1, 7, 15, 18, 24] the median is 15).

Sometimes the median works better than the

average

Page 5: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

5

C. Nikou – Digital Image Processing (E12)

The Spatial Filtering Process

r s t

u v w

x y z

Origin x

y Image f (x, y)

eprocessed = v*e +

r*a + s*b + t*c +

u*d + w*f +

x*g + y*h + z*i

FilterSimple 3*3

Neighbourhoode 3*3 Filter

a b c

d e f

g h i

Original Image

Pixels

*

The above is repeated for every pixel in the

original image to generate the filtered image

Page 6: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

6

C. Nikou – Digital Image Processing (E12)

Spatial Filtering: Equation Form

( , ) ( , ) ( , )a b

s a t b

g x y w s t f x s y t

Filtering can be given

in equation form as

shown above

Notations are based

on the image shown

to the left

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 7: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

7

C. Nikou – Digital Image Processing (E12)

Smoothing Spatial Filters

• One of the simplest spatial filtering

operations we can perform is a smoothing

operation

– Simply average all of the pixels in a

neighbourhood around a central value

– Especially useful

in removing noise

from images

– Also useful for

highlighting gross

detail

1/91/9

1/9

1/91/9

1/9

1/91/9

1/9

Page 8: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

8

C. Nikou – Digital Image Processing (E12)

Smoothing Spatial Filtering

1/91/9

1/91/9

1/91/9

1/91/9

1/9

Origin x

y Image f (x, y)

e = 1/9*106 + 1/9*104 + 1/9*100 + 1/9*108 + 1/9*99 + 1/9*98 + 1/9*95 + 1/9*90 + 1/9*85

= 98.3333

FilterSimple 3*3

Neighbourhood106

104

99

95

100 108

98

90 85

1/91/9

1/9

1/91/9

1/9

1/91/9

1/9

3*3 Smoothing

Filter

104 100 108

99 106 98

95 90 85

Original Image

Pixels

*

The above is repeated for every pixel in the original image to

generate the smoothed image.

Page 9: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

9

C. Nikou – Digital Image Processing (E12)

Image Smoothing Example

• The image at the top left

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

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 10: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

10

C. Nikou – Digital Image Processing (E12)

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

central pixel are more

important

– Often referred to as a

weighted averaging

1/162/16

1/16

2/164/16

2/16

1/162/16

1/16

Page 11: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

11

C. Nikou – Digital Image Processing (E12)

Another Smoothing Example

• By smoothing the original image we get rid

of lots of the finer detail which leaves only

the gross features for thresholding

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Original Image Smoothed Image Thresholded Image

Page 12: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

12

C. Nikou – Digital Image Processing (E12)

Averaging Filter vs. Median Filter

Example

• Filtering is often used to remove noise

from images

• Sometimes a median filter works better

than an averaging filter

Original Image

With Noise

Image After

Averaging Filter

Image After

Median Filter

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 13: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

13

C. Nikou – Digital Image Processing (E12)

Spatial smoothing and image

approximation

• Spatial smoothing may be viewed as a

process for estimating the value of a pixel

from its neighbours.

• What is the value that “best” approximates

the intensity of a given pixel given the

intensities of its neighbours?

• We have to define “best” by establishing a

criterion.Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 14: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

14

C. Nikou – Digital Image Processing (E12)

Spatial smoothing and image

approximation (cont...)

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

2

1

( )N

i

E x i m

2

1

arg min ( )N

m i

m x i m

0E

m

1

2 ( ) 0N

i

x i m

1 1

( )N N

i i

x i m

1

( )N

i

x i Nm

1

1( )

N

i

m x iN

A standard criterion is the the sum of

squares differences.

The average value

Page 15: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

15

C. Nikou – Digital Image Processing (E12)

Spatial smoothing and image

approximation (cont...)

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

1

( )N

i

E x i m

1

arg min ( )N

m i

m x i m

0E

m

1

( ) 0,N

i

sgn x i m

1 0

( ) 0 0

1 0

x

sign x x

x

Another criterion is the the sum of absolute

differences.

There must be equal in quantity positive and negative values.

median{ ( )}m x i

Page 16: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

16

C. Nikou – Digital Image Processing (E12)

Spatial smoothing and image

approximation (cont...)

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

– The median filter is non linear:

– It works well for impulse noise (e.g. salt and

pepper).

– It requires sorting of the image values.

– It preserves the edges better than an average

filter in the case of impulse noise.

– It is robust to impulse noise at 50%.

median{ } median{ } median{ }x y x y

Page 17: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

17

C. Nikou – Digital Image Processing (E12)

Spatial smoothing and image

approximation (cont...)

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Example x[n] 1 1 1 1 1 2 2 2 2 2

Impulse

noisex[n] 1 3 1 1 1 2 3 2 2 3

Median

(N=3) x[n] - 1 1 1 1 2 2 2 2 -

Average

(N=3)x[n] - 1.7 1.7 1 1.3 2 2.3 2.3 2.2 -

edge

The edge is smoothed

Page 18: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

18

C. Nikou – Digital Image Processing (E12)

Strange Things Happen At The Edges!

Origin x

y Image f (x, y)

e

e

e

e

At the edges of an image we are missing

pixels to form a neighbourhood

e e

e

Page 19: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

19

C. Nikou – Digital Image Processing (E12)

Strange Things Happen At The Edges!

(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

Page 20: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

20

C. Nikou – Digital Image Processing (E12)

Strange Things Happen At The Edges!

(cont…)

Original

Image

Filtered Image:

Zero Padding

Filtered Image:

Replicate Edge Pixels

Filtered Image:

Wrap Around Edge Pixels

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 21: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

21

C. Nikou – Digital Image Processing (E12)

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

• For symmetric filters it makes no difference.

eprocessed = v*e +

z*a + y*b + x*c +

w*d + u*e +

t*f + s*g + r*h

r s t

u v w

x y z

Filter

a b c

d e e

f g h

Original Image

Pixels

*

Page 22: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

22

C. Nikou – Digital Image Processing (E12)

Correlation & Convolution (cont.)

Page 23: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

23

C. Nikou – Digital Image Processing (E12)

Correlation & Convolution (cont.)

Page 24: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

24

C. Nikou – Digital Image Processing (E12)

Effect of Low Pass Filtering on White

Noise

Let f be an observed instance of the image f0

corrupted by noise w:

with noise samples having mean value

E[w(n)]=0 and being uncorrelated with respect

to location:

0f f w

2 ,[ ( ) ( )]

0,

m nE w m w n

m n

Page 25: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

25

C. Nikou – Digital Image Processing (E12)

Effect of Low Pass Filtering on White

Noise (cont...)

Applying a low pass filter h (e.g. an average

filter) by convolution to the degraded image:

The expected value of the output is:

The noise is removed in average.

*g h f0*( )h f w

0* *h f h w

0[ ] [ * ] [ * ]E g E h f E h w 0* * [ ]h f h E w

0* *0h f h 0*h f

Page 26: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

26

C. Nikou – Digital Image Processing (E12)

Effect of Low Pass Filtering on White

Noise (cont...)

What happens to the standard deviation of g?

Let

where the bar represents filtered versions of

the signals, then

22 2[ ] [ ]g E g E g

0 0* *g h f h w f w

2 2

0 0[( ) ] ( )f w f

2 2 2

0 0 0[( ) ( ) 2 ] ( )f w f w f

2

0[( ) ] 2 [ ] [ ]E w E f E w 2[( ) ]E w

Page 27: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

27

C. Nikou – Digital Image Processing (E12)

Effect of Low Pass Filtering on White

Noise (cont...)

Considering that h is an average filter, we have

at pixel n:

Therefore,

2[( ( )) ]E w n

( ) ( * )( )w n h w n( )

1( )

k n

w kN

2

( )

1( )

k n

E w kN

Page 28: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

28

C. Nikou – Digital Image Processing (E12)

Effect of Low Pass Filtering on White

Noise (cont...)

2

( )

1( )

k n

E w kN

2

2( )

1( )

k n

E w kN

2( ) ( )

2( ) ( )

l n m nm l

E w n l w n mN

Sum of squares

Cross products

Page 29: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

29

C. Nikou – Digital Image Processing (E12)

Effect of Low Pass Filtering on White

Noise (cont...)

2 2

2 2( ) ( )

1 1( )

k n k n

E w kN N

2( ) ( )

2( ) ( ) 0

l n m nm l

E w n l w n mN

Sum of squares

Cross products (uncorrelated as ml)

Page 30: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

30

C. Nikou – Digital Image Processing (E12)

Effect of Low Pass Filtering on White

Noise (cont...)

Finally, substituting the partial results:

The effect of the noise is reduced.

This processing is not optimal as it also smoothes image

edges.

2

2

( )

1( )g

k n

E w kN

2

2( )

1

k nN

2

2

1N

N

2

N

Page 31: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

31

C. Nikou – Digital Image Processing (E12)

Sharpening Spatial Filters

• Previously we have looked at smoothing

filters which remove fine detail

• Sharpening spatial filters seek to highlight

fine detail

– Remove blurring from images

– Highlight edges

• Sharpening filters are based on spatial

differentiation

Page 32: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

32

C. Nikou – Digital Image Processing (E12)

Spatial Differentiation

• Differentiation measures the rate of change

of a function

• Let’s consider a simple 1 dimensional

example

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 33: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

33

C. Nikou – Digital Image Processing (E12)

Spatial Differentiation

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

A B

Page 34: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

34

C. Nikou – Digital Image Processing (E12)

Derivative Filters Requirements

• First derivative filter output

– Zero at constant intensities

– Non zero at the onset of a step or ramp

– Non zero along ramps

• Second derivative filter output

– Zero at constant intensities

– Non zero at the onset and end of a step or ramp

– Zero along ramps of constant slope

Page 35: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

35

C. Nikou – Digital Image Processing (E12)

1st Derivative

• Discrete approximation of the 1st derivative

• It is just the difference between subsequent

values and measures the rate of change of

the function

)()1( xfxfx

f

Page 36: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

36

C. Nikou – Digital Image Processing (E12)

1st Derivative (cont…)Image Strip

0

1

2

3

4

5

6

7

8

1st Derivative

-8

-6

-4

-2

0

2

4

6

8

5 5 4 3 2 1 0 0 0 6 0 0 0 0 1 3 1 0 0 0 0 7 7 7 7

0 -1 -1 -1 -1 -1 0 0 6 -6 0 0 0 1 2 -2 -1 0 0 0 7 0 0 0

Page 37: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

37

C. Nikou – Digital Image Processing (E12)

1st Derivative (cont.)

The gradient points in the direction of most rapid increase

in intensity.

• The gradient of an image:

Gradient direction

The edge strength is given by the gradient magnitude

Source: Steve Seitz

Page 38: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

38

C. Nikou – Digital Image Processing (E12)

1st Derivative (cont.)

f

x

f

y

f

Page 39: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

39

C. Nikou – Digital Image Processing (E12)

2nd Derivative

• Discrete approximation of the 2nd

derivative:

)(2)1()1(2

2

xfxfxfx

f

Page 40: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

40

C. Nikou – Digital Image Processing (E12)

2nd Derivative (cont…)Image Strip

0

1

2

3

4

5

6

7

8

5 5 4 3 2 1 0 0 0 6 0 0 0 0 1 3 1 0 0 0 0 7 7 7 7

2nd Derivative

-15

-10

-5

0

5

10

-1 0 0 0 0 1 0 6 -12 6 0 0 1 1 -4 1 1 0 0 7 -7 0 0

Page 41: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

41

C. Nikou – Digital Image Processing (E12)

Using Second Derivatives For Image

Enhancement

• Edges in images are often ramp-like transitions

– 1st derivative is constant and produces thick edges

– 2nd derivative zero crosses the edge (double response at the onset and end with opposite signs)

Page 42: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

42

C. Nikou – Digital Image Processing (E12)

Derivatives

Page 43: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

43

C. Nikou – Digital Image Processing (E12)

Using Second Derivatives For Image

Enhancement

• A common sharpening filter is the Laplacian

– Isotropic• Rotation invariant: Rotating the image and applying

the filter is the same as applying the filter and then rotating the image.

• In other words, the Laplacian of a rotated image is the rotated Laplacian of the original image.

– One of the simplest sharpening filters

– We will look at a digital implementation

y

f

x

ff

2

2

2

22

Page 44: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

44

C. Nikou – Digital Image Processing (E12)

The Laplacian

y

f

x

ff

2

2

2

22

),(2),1(),1(2

2

yxfyxfyxfx

f

),(2)1,()1,(2

2

yxfyxfyxfy

f

Page 45: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

45

C. Nikou – Digital Image Processing (E12)

The Laplacian (cont…)

2 4 ( , )

( 1, ) ( 1, )

( , 1) ( , 1)

f f x y

f x y f x y

f x y f x y

0 1 0

1 -4 1

0 1 0

Page 46: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

46

C. Nikou – Digital Image Processing (E12)

The Laplacian (cont…)

• Applying the Laplacian to an image we get

a new image that highlights edges and

other discontinuities

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Original

Image

Laplacian

Filtered Image

Laplacian

Filtered Image

Scaled for Display

Page 47: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

47

C. Nikou – Digital Image Processing (E12)

The Laplacian (cont…)

• The result of a Laplacian

filtering is not an enhanced

image

• We have to do more work

• Subtract the Laplacian result

from the original image to

generate our final sharpened

enhanced image

Laplacian

Filtered Image

Scaled for Display

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

fyxfyxg 2),(),(

Page 48: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

48

C. Nikou – Digital Image Processing (E12)

Laplacian Image Enhancement

• In the final, sharpened image, edges and

fine detail are much more obvious

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

- =

Original

Image

Laplacian

Filtered Image

Sharpened

Image

Page 49: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

49

C. Nikou – Digital Image Processing (E12)

Laplacian Image Enhancement

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 50: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

50

C. Nikou – Digital Image Processing (E12)

Simplified Image Enhancement

• The entire enhancement can be combined

into a single filtering operation:

2( , ) ( , )

5 ( , ) ( 1, ) ( 1, )

( , 1) ( , 1)

g x y f x y f

f x y f x y f x y

f x y f x y

Page 51: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

51

C. Nikou – Digital Image Processing (E12)

Simplified Image Enhancement (cont…)

• This gives us a new filter which does the

whole job in one step

0 -1 0

-1 5 -1

0 -1 0

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 52: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

52

C. Nikou – Digital Image Processing (E12)

Simplified Image Enhancement (cont…)

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 53: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

53

C. Nikou – Digital Image Processing (E12)

Variants On The Simple Laplacian

• There are lots of slightly different versions

of the Laplacian that can be used:

0 1 0

1 -4 1

0 1 0

1 1 1

1 -8 1

1 1 1

-1 -1 -1

-1 9 -1

-1 -1 -1

Standard

Laplacian

Variant of

Laplacian

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 54: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

54

C. Nikou – Digital Image Processing (E12)

Unsharp masking

• Used by the printing industry

• Subtracts an unsharped (smooth) image

from the original image f (x,y).

–Blur the image

b(x,y)=Blur{f (x,y)}

–Subtract the blurred image from the original

(the result is called the mask)

gmask(x,y)=f (x,y)-b(x,y)

–Add the mask to the original

g(x,y)=f (x,y)+k gmask(x,y), k being non negative

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 55: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

55

C. Nikou – Digital Image Processing (E12)

Unsharp masking (cont...)

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Sharpening mechanism

If k>1, the process is referred to

as highboost filtering

Page 56: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

56

C. Nikou – Digital Image Processing (E12)

Unsharp masking (cont...)

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

) Original image

Blurred image

(Gaussian 5x5, σ=3)

Mask

Unsharp masking (k=1)

Highboost filtering (k=4.5)

Page 57: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

57

C. Nikou – Digital Image Processing (E12)

Using First Derivatives For Image

Enhancement

• Although the derivatives are linear

operators, the gradient magnitude is not.

• Also, the partial derivatives are not rotation

invariant (isotropic).

• The magnitude of the gradient vector is

isotropic.

TT

x y

f ff G G

x y

Page 58: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

58

C. Nikou – Digital Image Processing (E12)

Using First Derivatives For Image

Enhancement (cont…)

• In some applications it is more

computationally efficient to approximate:

yx GGf

• This expression preserves relative changes

in intensity but it is not isotropic.

• Isotropy is preserved only for a limited

number of rotational increments which

depend on the filter masks (e.g. 90 deg.).

Page 59: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

59

C. Nikou – Digital Image Processing (E12)

Sobel Operators

• Sobel operators introduce the idea of

smoothing by giving more importance to the

center point:

• Note that the coefficients sum to 0 to give a 0

response at areas of constant intensity.

-1 -2 -1

0 0 0

1 2 1

-1 0 1

-2 0 2

-1 0 1

Page 60: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

60

C. Nikou – Digital Image Processing (E12)

Sobel operator Example

• Sobel gradient aids to eliminate constant or slowly

varying shades of gray and assist automatic

inspection.

• It also enhances small discontinuities in a flat gray

filed.Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

An image of a

contact lens which

is enhanced in

order to make

defects (at four

and five o’clock in

the image) more

obvious

Page 61: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

61

C. Nikou – Digital Image Processing (E12)

1st & 2nd Derivatives

Comparing the 1st and 2nd derivatives we

can conclude the following:

– 1st order derivatives generally produce thicker

edges (if thresholded at ramp edges)

– 2nd order derivatives have a stronger

response to fine detail e.g. thin lines

– 1st order derivatives have stronger response

to gray level step

– 2nd order derivatives produce a double

response at step changes in grey level (which

helps in detecting zero crossings)

Page 62: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

62

C. Nikou – Digital Image Processing (E12)

Combining Spatial Enhancement

Methods

• Successful image

enhancement is typically not

achieved using a single

operation

• Rather we combine a range of

techniques in order to achieve

a final result

• This example will focus on

enhancing the bone scan to

the right

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 63: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

63

C. Nikou – Digital Image Processing (E12)

Combining Spatial Enhancement

Methods (cont…)

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Laplacian filter of

bone scan (a)

Sharpened version of

bone scan achieved

by subtracting (a)

and (b) Sobel filter of bone

scan (a)

(a)

(b)

(c)

(d)

Page 64: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

64

C. Nikou – Digital Image Processing (E12)

Combining Spatial Enhancement

Methods (cont…)

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

The product of (c)

and (e) which will be

used as a mask

Sharpened image

which is sum of (a)

and (f)

Result of applying a

power-law trans. to

(g)

(e)

(f)

(g)

(h)

Image (d) smoothed with

a 5*5 averaging filter

Page 65: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

65

C. Nikou – Digital Image Processing (E12)

Combining Spatial Enhancement

Methods (cont…)

Compare the original and final images

Ima

ge

s ta

ke

n fro

m G

on

za

lez &

Wood

s, D

igita

l Im

age

Pro

ce

ssin

g (

20

02

)

Page 66: Christophoros Nikou cnikou@cs.uoi · Spatial smoothing and image approximation (cont...)) –The median filter is non linear: –It works well for impulse noise (e.g. salt and pepper)

66

C. Nikou – Digital Image Processing (E12)

Summary

In this lecture we have looked at the idea of spatial filtering and in particular:

– Neighbourhood operations

– The filtering process

– Smoothing filters

– Dealing with problems at image edges when using filtering

– Correlation and convolution

– Sharpening filters

– Combining filtering techniques