<< Chapter < Page Chapter >> Page >
This module discusses the data received for this project as well as its processing into an image.

Introduction and preparation of sar data

In order to simulate the processing of SAR data, we received SAR data from the ECE department at Ohio State University. The data they gave us was acquired through a computer simulated fly-by past a CAD model of a backhoe.

The data we received from OSU was in digital format, meaning the analog mixing and low pass filtering was already completed and we received digitized versions of Cθ(t). This function was shown to be equivalent to Pθ(U), the Fourier transform of our projection slices pθ(u). The matlab file that contained this information was a 512x1541 matrix iq_lin, a vector of various Pθsignals for different values ofθ, the viewing angle. There were 1541 different viewing angles, listed in az_lin, that stepped by 1/14˚for each element and varied from -10˚to 100˚, a median viewing angle of 45˚. We also received a vector of length 512 called f that contained the microwave frequencies (7-13 GHz) that were transmitted and received. By using the wideband approximation, we made the transformation from time frequency to spatial frequency via

R / c = ( / c ) f size 12{R approx 2ω/c= \( 4π/c \) f} {}

where R is the radial spatial frequency and f is the microwave frequency content. By the projection slice theorem, we have that the various Pθare arranged radially in a polar grid along the various anglesθ. We then get that our data lies on a domain

10 ° θ 100 ° size 12{ - "10"°<=θ<= "100"°} {}

R ΔR = [ ( / c ) f min , ( / c ) f max ] size 12{R inΔR= \[ \( 4π/c \) f rSub { size 8{"min"} } , \( 4π/c \) f rSub { size 8{"max"} } \] } {}

Processing of sar data

Knowing that our data is the Fourier transform of our image, after the proper preparation we want to take the inverse Fourier transform. To do this simply and efficiently (we don’t want Matlab running for hours!) we linearly interpolate the data to a Cartesian grid. This is done in our Matlab function sar_lin (code found in appendix). The idea is to find an inscribed rectangular grid inside our polar data. We chose to use the square centered at 45˚inscribed in our ribbon. To interpolate we made a Cartesian grid at this location and computed the polar representation of each point in order to find its 4 nearest polar neighbors. Once those neighbors were found, the Cartesian point’s value was determined by linearly interpolating in the R-direction for the twoθvalues and then linearly interpolating in theθ-direction. The end result of our program’s running of this is shown below.

After linearly interpolating each point in the Cartesian grid we have formed, we now have our data in a form that allows us to take the 2-d inverse DFT by the fast Fourier transform method. This is what saved us computation time (program ran in about 15 seconds) and is the reason we interpolated to Cartesian coordinates to begin with. Below is the image after taking the inverse Fourier transform.

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Elec 301 projects fall 2007. OpenStax CNX. Dec 22, 2007 Download for free at http://cnx.org/content/col10503/1.1
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Elec 301 projects fall 2007' conversation and receive update notifications?

Ask