Skip to content Skip to navigation

Connexions

You are here: Home » Content » Backprojection Implementation

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.

Backprojection Implementation

Module by: Deborah Miller, Warren Scott

Our implementation uses three pieces of Matlab code: shrinkPR, filtersinc, and backproject.

ShrinkPR

The original projection data was greatly over-sampled, taking over 20,000 samples in 400 picoseconds for each of the 360 angles. In order to reduce computation time, we uniformly reduced the number of samples and the number of angles. Our shrinkPR code takes the original PR matrix, a matrix whose columns are the projections, and outputs a smaller PR matrix with fewer samples and angles. It also creates a column vector, theta, which contains the angles of the corresponding projections.

Filtersinc

This code takes in the PR matrix and outputs the filtered PR matrix.

Figure 1
Figure 1 (back_eq5.gif)

It creates the ramp filter |ω| and multiplies it with the FFT of each projection. It then takes the IFFT of each filtered projection.

Backproject

Backproject implements the discrete approximation of :

Figure 2
Figure 2 (back_eq6.gif)

This code backprojects each of the filtered projections over the image plane and sums them together to produce the final reconstructed image. In order to implement the continuous function given discrete data points, the “round” function was used, effectively interpolating the data.

Representative Results

The following are reconstructed images:

1500 samples per projection and 360 angles:

Figure 3
Figure 3 (picture1.jpg)

From this image you can easily see the original object.

1100 samples per projection and 360 angles:

Figure 4
Figure 4 (picture2.jpg)

This image is not as clear since fewer samples were used.

1500 samples and angles 1-180.

Figure 5
Figure 5 (picture3.jpg)

From this image you can see the left half of the object since we used the first half of the projections.

Comments, questions, feedback, criticisms?

Send feedback