Skip to content Skip to navigation

Connexions

You are here: Home » Content » Deconvolution with Inverse and Weiner Filters

Navigation

Content Actions

  • Download module PDF
  • Add to ...
    Add the module to:
    • My Favorites
    • A lens
    • An external social bookmarking service
    • My Favorites (What is 'My Favorites'?)
      'My Favorites' is a special kind of lens which you can use to bookmark modules and collections directly in Connexions. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need a Connexions account to use 'My Favorites'.
    • A lens (What is a lens?)

      Definition of a lens

      Lenses

      A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

      What is in a lens?

      Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

      Who can create a lens?

      Any individual Connexions member, a community, or a respected organization.

    • External bookmarks
  • E-mail the authors

Lenses

What is a lens?

Definition of a lens

Lenses

A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

What is in a lens?

Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

Who can create a lens?

Any individual Connexions member, a community, or a respected organization.

This content is ...

Affiliated with (What does "Affiliated with" mean?)

This content is either by members of the organizations listed or about topics related to the organizations listed. Click each link to see a list of all content affiliated with the organization.
  • Rice University ELEC 301 Projects

    This module is included inLens: Rice University ELEC 301 Project Lens
    By: Rice University ELEC 301As a part of collection:"ELEC 301 Projects Fall 2005"

    Click the "Rice University ELEC 301 Projects" link to see all content affiliated with them.

Recently Viewed

This feature requires Javascript to be enabled.

Deconvolution with Inverse and Weiner Filters

Module by: Deborah Miller, Warren Scott

Problem Statement

The first task is to deconvolve the reference pulse from all the measured waveforms to obtain the actual projections of our specimen. In general the deconvolution problem can be modeled as in the following figure.

Figure 1
Block diagram of our system
Block diagram of our system (deconvolution2.JPG)

In the above figure, p(t) is the projection of the object slice that is to be used in the object reconstruction. The reference pulse is denoted by r(t) and interpreted as a low- pass degradation filter that convolves with the projections. The result of this convolution plus an additive noise n(t) is the measured waveforms s(t). In this case, both r(t) and s(t) are known and the goal is to obtain p(t) by deconvolving r(t) from s(t) and denoising. Mathematically the above block diagram can be written as:

Figure 2
Figure 2 (eq1.gif)

Inverse Filter

Most of deconvolution schemes are implemented in the frequency domain. This makes sense since convolution in the time domain is mapped as multiplication in the frequency domain. Inverse filtering is the simplest and most naïve method for deconvolution. No denoising takes place in this case.

Equation 1 can be written in the frequency domain as:

Figure 3
Figure 3 (eq2.gif)
where S(ω), R(ω) and P(ω) are the Fourier transforms of s(t), r(t) and p(t) respectively.
Figure 4
Figure 4 (eq3.gif)

The main drawback of the method is that R(ω) is usually a low-pass filter and therefore 1/R(ω) is a high-pass filter which attains large values as the frequency increases. Thus, equation (3) becomes numerically unstable for small R(ω) values and greatly amplifies the high- frequency noise contribution. This makes inverse filtering very sensitive to even the small amounts of high frequency noise which exists in the measured waveforms.

One method of decreasing the noise sensitivity inherent when inverse filtering is to bound the frequency response 1/R(ω) to some threshold γ as follows:

Figure 5
Figure 5 (eq4.gif)

The code that implements inverse filtering is inverseFilter.m

Wiener Filter

One of the most widely used restoration techniques is the Wiener filter. Contrary to the inverse filtering this method also attempts to diminish noise while restoring the original signal. It executes an optimal balance between inverse filtering and noise smoothing in the mean square error sense. Assuming white Gaussian noise, the Wiener filter expressed in the Fourier domain is written as:

Figure 6
Figure 6 (eq5.gif)
where Spp(ω) is the power spectrum of the input projection and σ2 is the variance of the Gaussian noise. The derivation of this formula is based on a stochastic framework and is beyond the scope of this project.

In this case the projections are unknown and an estimate of Spp is needed. This is provided by noting that Sss(ω)= Spp(ω)•|R(ω)|2, solving for Spp(ω) and substituting into equations (5) to get:

Figure 7
Figure 7 (eq6.gif)

Interestingly, the last equation can be interpreted as two different filters in cascade in the frequency domain. The first is denoising, while the second is exactly the inverse filter considered in the previous section.

The code that implements Wiener filtering is wienerFilter.m .

Driver for filters

Comments, questions, feedback, criticisms?

Send feedback