Skip to content

hanjiepan/LEAP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LEAP: Looking beyond pixels with continuous-space EstimAtion of Point sources

Authors

Hanjie Pan1, Matthieu Simeoni1,2, Paul Hurley2, Thierry Blu3 and Martin Vetterli1
1Audiovisual Communications Laboratory (LCAV) at EPFL.
2IBM Research Zurich.
3Image and Video Processing Laboratory (IVP) at CUHK.

Contact

Hanjie Pan
EPFL-IC-LCAV
BC 322 (Bâtiment BC)
Station 14
1015 Lausanne

Abstract

Context. Two main classes of imaging algorithms have emerged in radio interferometry: the CLEAN algorithm and its multiple variants, and compressed-sensing inspired methods. They are both discrete in nature, and estimate source locations and intensities on a regular grid. For the traditional CLEAN-based imaging pipeline, the resolution power of the tool is limited by the width of the synthesized beam, which is inversely proportional to the largest baseline. The finite rate of innovation (FRI) framework is a robust method to find the locations of point-sources in a continuum without grid imposition. The continuous formulation makes the FRI recovery performance only dependent on the number of measurements and the number of sources in the sky. FRI can theoretically find sources below the perceived tool resolution. To date, FRI had never been tested in the extreme conditions inherent to radio astronomy: weak signal / high noise, huge data sets, large numbers of sources. But not all measurements are obtained uniformly, as exemplified by a concrete radioastronomy problem we set out to solve. Thus, we develop the theory and algorithm to reconstruct sparse signals, typically sum of sinusoids, from non-uniform samples. We achieve this by identifying a linear transformation that relates the unknown uniform samples of sinusoids to the given measurements. These uniform samples are known to satisfy the annihilation equations. A valid solution is then obtained by solving a constrained minimization such that the reconstructed signal is consistent with the given measurements and satisfies the annihilation constraint.

Aims. The aims were (i) to adapt FRI to radio astronomy, (ii) verify it can recover sources in radio astronomy conditions with more accurate positioning than CLEAN, and possibly resolve some sources that would otherwise be missed, (iii) show that sources can be found using less data than would otherwise be required to find them, and (v) show that FRI does not lead to an augmented rate of false positives.

Methods. We implemented a continuous domain sparse reconstruction algorithm in Python. The angular resolution performance of the new algorithm was assessed under simulation, and with visibility measurements from the LOFAR telescope. Existing catalogs were used to confirm the existence of sources.

Results. We adapted the FRI framework to radio interferometry, and showed that it is possible to determine accurate off-grid point source locations and their corresponding intensities. In addition, FRI-based sparse reconstruction required less integration time and smaller baselines to reach a comparable reconstruction quality compared to a conventional method. The achieved angular resolution is higher than the perceived instrument resolution, and very close sources can be reliably distinguished. The proposed approach has cubic complexity in the total number (typically around a few thousand) of uniform Fourier data of the sky image estimated from the reconstruction. It is also demonstrated that the method is robust to the presence of extended-sources, and that false-positives can be addressed by choosing an adequate model order to match the noise level.

Package Description

This repository contains all the code to reproduce the results of the paper LEAP: Looking beyond pixels with continuous-space EstimAtion of Point sources. It contains a Python implementation of the proposed algorithm.

A number of scripts were written to apply the proposed finite rate of innovation (FRI)-based sparse reconstruction to point source estimation in radio astronomy, including

  • Realistic simulation with LOFAR antenna layout
    • Resolving two point sources that are separated by various distances at different relative orientations (experiment_src_separation.py)
    • Model order selection to avoid false detection (model_order_sel.py)
    • Refine linear mapping that connects the uniform Fourier data of the sky image to the visibility measurements (figure_update_G.py)
  • Point source reconstruction from actual LOFAR observation
    • Böotes field, which primarily consists of point sources (bootes_field_narrow_fov_experiment.py)
    • "Toothbrush" cluster (RX J0603.3+4214), which contains extended structure at the center of the field-of-view (toothbrush_cluster_narrow_fov_experiment.py)

We are available for questions or requests relating to either the code or the theory behind it.

Recreate the figures

NOTE: the algorithm implementation assumes python 3 by default. However, for the data pre-processing we have to use casacore, which is python 2-only. That is why some scripts are called with python2.

Fig. 4: The iterative strategy to refine linear mapping:

python2 figure_update_G.py

Fig. 5 - 7: The average source resolution performance for LEAP and CLEAN:

# average performance with LEAP
python experiment_src_separation.py

# average performance with CLEAN
python2 experiment_src_separation_clean.py

# one example for visiual comparision (small separation, high SNR)
python2 visual_example_fri_vs_clean.py
 
# another example for source resolution (relative large separation, low SNR)
python2 low_snr_fri_vs_clean.py

Fig. 8: Model order selection base on the fitting error to avoid false detection:

python model_order_sel.py

Fig. 9: Point source reconstruction with LOFAR measurements from the Böotes field:

# 1) Single-band case (i.e., Dataset II)
python bootes_field_narrow_fov_experiment.py

# 2) Multi-band case (i.e., Dataset III)
python bootes_field_narrow_fov_experiment.py -m

Fig. 10: Point source reconstruction in the presence of extended sources with LOFAR measurement from the Toothbrush cluster:

python toothbrush_cluster_narrow_fov_experiment.py

Data used in the paper

  • The randomly generated point source parameters are saved under the folder data/ast_src_resolve/:

      # Simulated point source use in Fig. 4
      src_param_20170503-150943.npz
    
      # Simulation point source use in Fig. 6
      src_param_20170626-231925.npz
    
      # Simulation point source use in Fig. 7
      src_param_20170331-155144.npz
    
      # Simulation point source use in Fig. 8
      src_param_20170701-163710.npz
    
  • The extracted visibility measurements from the MS file of LOFAR observation are svaed under the folder data/:

      # Bootes field (single-band)
      BOOTES24_SB180-189.2ch8s_SIM_72STI_146MHz_28Station_1Subband.npz
    
      # Bootes field (multi-band)
      BOOTES24_SB180-189.2ch8s_SIM_9STI_146MHz_28Station_8Subband.npz
    
      # Toothbrush cluster
      RX42_SB100-109.2ch10s_63STI_132MHz_36Station_1Subband_FoV5.npz
    
  • The raw measurement set (MS) from LOFAR was used in experiments with real data as well as in simulations, where we fill in the MS file with simulated visibilities. The dataset can be downloaded from Zenodo and decompressed afterwards:

    DOI

      wget https://zenodo.org/record/1044019/files/BOOTES24_SB180-189.2ch8s_SIM.ms.tar.gz
      wget https://zenodo.org/record/1044019/files/RX42_SB100-109.2ch10s.ms.tar.gz
      tar -xzvf BOOTES24_SB180-189.2ch8s_SIM.ms.tar.gz
      tar -xzvf RX42_SB100-109.2ch10s.ms.tar.gz
    

    After decompression, update the evironment variable in setup.py, e.g.,:

      os.environ['DATA_ROOT_PATH'] = 'path_to_the_ms_files'
      os.environ['PROCESSED_DATA_ROOT_PATH'] = 'path_to_the_ms_files'
    
  • We have used three catalogs in the experiments, namely the Boötes field catalog, TGSS ADR1 catalog, and the NVSS catalog. We have converted the original FITS tables of the catalogs to Numpy arrays. They can be downloaded from the same Zenodo webpage:

      wget https://zenodo.org/record/1044019/files/skycatalog.npz
      wget https://zenodo.org/record/1044019/files/TGSSADR1_7sigma_catalog.npz
      wget https://zenodo.org/record/1044019/files/NVSS_CATALOG.npz
    

Dependencies

  • A working distribution of Python 3.5 and Python 2.7 (A few scripts run CLEAN for comparision. casacore, which only have official support for Python 2, is used to exchange data between a measurement set (MS) and numpy arrays).
  • Numpy, Scipy.
  • We use the distribution Anaconda to simplify the setup of the environment.
  • We use the MKL extension of Anaconda to speed things up.
  • We use joblib for parallel computations.
  • matplotlib for plotting the results.
  • theano for the parallel computation with GPU.
  • casacore for the data exhcange to / from MS file and its Python wrapper python-casacore.

List of standard packages needed

numpy, scipy, matplotlib, mkl, joblib, theano

The easiest way to setup proper computing environment is first to download and install Python distributions from Anaconda. Then choose a correct version with

conda install python=3.5 mkl=11.3.3 theano joblib

The CLEAN algorithm wsclean is used for comparisons.

System Tested

macOS

Machine MacBook Pro Retina 15-inch, Mid 2014
System macOS Sierra 10.12
CPU Intel Core i7
RAM 16 GB
System Info:
------------
Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64 x86_64

Python Packages Info (conda)
----------------------------
# packages in environment at /Users/pan/anaconda:
joblib                    0.11                     py35_0  
matplotlib                2.0.2            py35ha43f773_1 
mkl                       11.3.3                        0  
mkl-service               1.1.2                    py35_2  
numpy                     1.11.2                   py35_0
python                    3.5.4               hf91e954_15
scipy                     0.18.1              np111py35_0  
theano                    0.9.0                    py35_0

Ubuntu Linux

Machine lcavsrv1
System Ubuntu 16.04.2 LTS
CPU Intel Xeon
RAM 62GiB
System Info:
------------
Linux 4.4.0-62-generic #83-Ubuntu SMP Wed Jan 18 14:10:15 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

Python Packages Info (conda)
----------------------------
# packages in environment at /home/pan/anaconda3:
joblib                    0.11                     py35_0 
matplotlib                2.0.2               np111py35_0  
mkl                       11.3.3                        0  
mkl-service               1.1.2                    py35_2  
numpy                     1.11.2                   py35_0
python                    3.5.3                         1
scipy                     0.18.1              np111py35_0  
theano                    0.9.0                    py35_0

License

Copyright (c) 2017, Hanjie Pan
The source code is released under the GPL license.

About

Python implementation for LEAP: Looking beyond pixels with continuous-space EstimAtion of Point sources

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages