Skip to content

A C++ library for InSAR denoising images using OpenCL

License

Notifications You must be signed in to change notification settings

GeomaticsAndRS/despeckCL

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

despeckCL

A C++ library for InSAR denoising images using OpenCL with Python bindings. The code is developed and tested on an Intel HD4000 and a NVIDIA Tesla K40. To get started have a look at the examples directory, have a look at the sphinx documentation or checkout despeckcl.h. If you have any comments, questions or suggestions just write me an email.

Implemented Filters

So far the following filters are implemented:

  • Boxcar: The simple boxcar filter
  • Goldstein: The Goldstein InSAR filter, Goldstein, R. M.; Werner, C. L., "Radar interferogram filtering for geophysical applications," Geophysical Research Letters,vol. 25, no. 21, pp.4035,4038, 1998
  • NL-SAR: A nonlocal filter for SAR, InSAR and PolSAR, Deledalle, C.-A.; Denis, L.; Tupin, F.; Reigber, A.; Jäger, M., "NL-SAR: A Unified Nonlocal Framework for Resolution-Preserving (Pol)(In)SAR Denoising," Geoscience and Remote Sensing, IEEE Transactions on , vol.53, no.4, pp.2021,2038, April 2015
    • currently this implementation uses only a single search window of fixed size in contrast to the original paper, which uses multiple search window sizes.
    • so far only InSAR filtering is supported.
  • NL-InSAR: A nonlocal InSAR filter, Deledalle, C.-A.; Denis, L.; Tupin, F., "NL-InSAR: Nonlocal Interferogram Estimation," Geoscience and Remote Sensing, IEEE Transactions on , vol.49, no.4, pp.1441,1452, April 2011

Requirements

  1. A compiler with C++14 and at least OpenMP 3.0 support. So far development is done using gcc. But clang is to be tested.
  2. An OpenCL Runtime:
  3. CMake
  4. GNU Scientific Library
  5. clFFT AMD's OpenCL FFT library, which also works on NVIDIA and Intel devices
  6. SWIG for generating Python and Octave bindings (optional)
  7. Sphinx for building the documentation (optional)
  8. despeckCL uses Google Test for unit testing and Easylogging++ for logging. Google Test is automatically checked out from github when building despeckCL and Easylogging++ is shipped directly with the source.

Building, Testing and Installation

$ git clone https://github.com/gbaier/despeckCL.git

$ cd despeckCL

$ mkdir build

$ cd build

$ cmake ../

The Python version can also be selected manually in case multiple versions are installed.

$ cmake ../ -DPYTHON_LIBRARY=~/anaconda3/lib/libpython3.5m.so \
            -DPYTHON_INCLUDE_DIR=~/anaconda3/include/python3.5m/ \
            -DPYTHON_EXECUTABLE=~/anaconda3/bin/python3.5
$ make -j4

$ make test

$ make install

About

A C++ library for InSAR denoising images using OpenCL

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 77.3%
  • C 19.4%
  • CMake 3.3%