Fannjiang: Difference between revisions

From Psych 221 Image Systems Engineering
Jump to navigation Jump to search
imported>Projects221
imported>Projects221
Line 3: Line 3:
==Introduction==
==Introduction==


Compressed sensing, which proposes the recovery of sparse signals from highly sub-Nyquist sampling, is a recent advancement in signal processing that has always intrigued me. Just as image compression schemes like JPEG have helped lighten expensive data storage and transmission, compressed sensing could come to Expensive data acquisition that is an element of many modern imaging systems, and just as image compression schemes have alleviated or my project I did a simple implementation of compressed sensing for  
Compressed sensing, which proposes the recovery of sparse signals from highly sub-Nyquist sampling, is a recent advancement in signal processing that has always intrigued me. Just as image compression schemes like JPEG have helped lighten expensive data storage and transmission, compressed sensing could reform the expensive data acquisition that is an element of many modern imaging systems. For my project, I did a simple implementation of compressed sensing for an imaging system used in astronomy, known as radio interferometry. Very early in the literature of compressed sensing, radio interferometry was noted numerous times as an ideal candidate for application, as it conforms to the two principles compressed sensing works by. The first is signal sparsity, where most of the signal's coefficients are zero or near-zero in some transform space; the second is incoherence of the measurements, where (roughly speaking) the underdetermined measurement matrix is


==Background==
==Background==

Revision as of 00:42, 21 March 2013

Compressed Sensing in Astronomical Imaging

Introduction

Compressed sensing, which proposes the recovery of sparse signals from highly sub-Nyquist sampling, is a recent advancement in signal processing that has always intrigued me. Just as image compression schemes like JPEG have helped lighten expensive data storage and transmission, compressed sensing could reform the expensive data acquisition that is an element of many modern imaging systems. For my project, I did a simple implementation of compressed sensing for an imaging system used in astronomy, known as radio interferometry. Very early in the literature of compressed sensing, radio interferometry was noted numerous times as an ideal candidate for application, as it conforms to the two principles compressed sensing works by. The first is signal sparsity, where most of the signal's coefficients are zero or near-zero in some transform space; the second is incoherence of the measurements, where (roughly speaking) the underdetermined measurement matrix is

Background

Imaging in Radio Astronomy

Interferometry is the definitive imaging tool of radio astronomy, allowing us to image finely structured radio sources such as galaxies, nebulas, and supernova remnants by using an array of many antennas to emulate a single lens. The aperture of the array is the greatest pairwise distance between antennas—which, at several kilometers for interferometers like the Very Large Array (VLA) in New Mexico, gives us far higher imaging resolution than a single lens could.

The Very Large Array, which uses 27 antennas.

Radio interferometry works by measuring the visibility function, or the interference fringes of the radio signal, at every pair of antennas in the array. The van Cittert-Zernike theorem gives the visibility function, as measured by one pair of antennas in the array, over the viewing window of the sky P as

V(𝐛)=𝑃I(𝐩)e2πi𝐛𝐩𝑑𝐩,

where 𝐛 is the displacement vector between the two antennas, called the baseline, and I(𝐩) is the intensity of the radiation from direction 𝐩. In effect, the array samples the two-dimensional Fourier transform of the spatial intensity distribution I(𝐩) of the radio source. Ideally, if we thoroughly sample the Fourier plane, we can invert the transform to reconstruct I(𝐩), the image of the radio source. However, the data acquisition quickly gets expensive, as we need to capture one Fourier coefficient per desired pixel in the image. The need to capture so much data has motivated a new generation of ambitious interferometers, including the Atacama Large Millimetre/submillimetre Array (ALMA), which will use 66 antennas, and the Square Kilometre Array (SKA), which will use several thousand antennas to probe the Fourier plane. Meanwhile, smaller interferometers like the 27-antenna VLA often sample over a period of time, allowing the rotation of the earth to synthesize "new" baselines as the antenna positions shift around the globe.

Despite such efforts, there are always irregular holes on the Fourier plane where sampling of the visibility function is thin or simply nonexistent. This data deficiency is currently managed by interpolating or filling in zeros for unknown visibility values, and applying deconvolution algorithms such as CLEAN to the resulting “dirty images”. However, is it necessary to collect so much data set in the first place?

Among imaging's most promising developments in recent years is the theory of compressed sensing (CS), which has shown that the information of a signal can be preserved even when sampling does not fulfill the fundamental Nyquist rate (Donoho 2006; Candès et al. 2006). The theory revolves around a priori knowledge that the signal is sparse or compressible in some basis, in which case its information naturally resides in a relatively small number of coefficients. Instead of directly sampling the signal, whereby full sampling would be inevitable in finding every non-zero or significant coefficient, CS allows us to compute just a few inner products of the signal along measurement vectors of certain favorable characteristics. (Here, the measurement vectors are the Fourier-like measurement vectors described by the van Cittert-Zernike theorem above.) The novelty of CS over image compression is that it takes advantage of image compressibility to alleviate data acquisition, not just data storage.

Astronomic images are often sparse or compressible—indeed, they are often sparse in the natural pixel basis, due to the black background of space. Recent studies such as Wiaux et al. 2009 have recognized the natural agreeability of radio interferometry with CS, comparing the its performance to the traditional CLEAN algorithm.

Compressed Sensing

Methods

Results

Conclusions

References

Candès, E., Romberg, J., and Tao, T. Robust uncertainty principles: Exact signal reconstruction from highly incomplete frequency information. IEEE Trans. Inform. Theory, 52:489 - 509, 2006. [1]

Donoho, D.L. Compressed sensing. IEEE Trans. Inform. Theory, 52:1289 -1306, 2006. [2]

Wiaux, Y., Jacques, L., Puy, G., Scaife, A.M.M., & Vandergheynst, P. Compressed sensing imaging techniques for radio interferometry. Monthly Notices of the Royal Astr. Soc., 395:1733 - 1742, 2009. [3]

Appendix