Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Part 1 : Image Restoration by Wiener Filter Write a MATLAB function Wiener _ filter that performs the parametric Wiener filtering restoration in the frequency

Part 1: Image Restoration by Wiener Filter
Write a MATLAB function Wiener_filter that performs the parametric Wiener filtering restoration in the
frequency domain. The function takes as input the degraded image g(x,y), and returns the estimated image
f(x,y) after Wiener filtering. The Wiener filter is given in the Eq.(5.8-6) shown below.
hat(F)(u,v)=[1H(u,v)|H(u,v)|2|H(u,v)|2+K]G(u,v)
Note: Try several K to obtain a least MSE, the mean square error MSE between the original and
restored images can be computed by using the Eq.(5.8-4) shown below:
MSE =1MNx=0M-1y=0N-1[f(x,y)-hat(f)(x,y)]2
Where f(x,y) is the original image
Use your function Wiener_filter to restore the degradeCameraMan.tif given in the Model course page.
Also, you are giving the original image CameraMan.tif in the Moodle course page that you will use to
compute the MSE.
The degradation function H(u,v) that will use it for Wiener restoration is
1- The motion blurring degradation function giving by the Eq.(5.6-11) shown below, where a=b=0.1
and T=1 :
H(u,v)=T(ua+vb)sin[(ua+vb)]e-j(ua+vb)
2- The Atmospheric Turbulence filter giving by Eq.(5.6-3) shown below where k=0.001 :
H(u,v)=e-k(u2+v2)56
Discuss how well the Wiener filtering restored the original image in both cases i.e. when motion blurring
degradation function is used and when atmospheric turbulence filter is use and which one is better.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Understanding Databases Concepts And Practice

Authors: Suzanne W Dietrich

1st Edition

1119827949, 9781119827948

More Books

Students also viewed these Databases questions

Question

Describe the ethical issues involved in conducting HRD evaluation

Answered: 1 week ago