Zip file
Description
The script cvx_unwrapping.m
(developped under MATLAB® 7.14) in the zip file above shows the behavior of the phase unwrapping algorithm described in
(Gonzalez Gonzalez and Jacques 2014)
whose abtract is:
The 2-D phase unwrapping problem aims at retrieving a “phase” image from its modulo observations. Many applications, such as interferometry or synthetic aperture radar imaging, are concerned by this problem since they proceed by recording complex or modulated data from which a “wrapped” phase is extracted. Although 1-D phase unwrapping is trivial, a challenge remains in higher dimensions to overcome two common problems: noise and discontinuities in the true phase image. In contrast to state-of-the-art techniques, this work aims at simultaneously unwrap and denoise the phase image. We propose a robust convex optimization approach that enforces data fidelity constraints expressed in the corrupted phase derivative domain while promoting a sparse phase prior. The resulting optimization problem is solved by the Chambolle-Pock primal-dual scheme. We show that under different observation noise levels, our approach compares favorably to those that perform the unwrapping and denoising in two separate steps.
The test of this script is performed on a synthetic phase image defined in a pixel grid (see below).
This image is simulated by a 2-D Gaussian function of height ( is a parameter to modify the height of the Gaussian), and standard deviations of 40 px horizontally and 25 px vertically.
It then adds normal distributed noise and compute the observations using the wrapping function. The unwrapping algorithm in cvx_unwrapping.m
(Gonzalez Gonzalez and Jacques 2014)
allows solving the following minimization problem:
with the observation (the wrapped phase), and
This code relies on the following toolbox and references:
- “SPARCO Toolbox”: E. v. Berg, M. P. Friedlander, G. Hennenfent, F. Herrmann, R. Saab, and O. Yilmaz, ‘‘Sparco: A testing framework for sparse reconstruction,’’ Dept. Computer Science, University of British Columbia, Vancouver, Tech. Rep. TR-2007-20, October 2007.
- The PUMA algorithm provided in J. Bioucas-Dias and G. Valad˜ao, ‘‘Phase unwrapping via graph-cuts,’’ IEEE Transactions on Image Processing, vol. 16, no. 3, pp. 698–709, 2007.
- Rice Wavelet Toolbox available at http://dsp.rice.edu/software/rice-wavelet-toolbox
BibTeX Citation when using this code:
@inproceedings{7025343,
author={Gonzalez, A. and Jacques, L.},
booktitle={Image Processing (ICIP), 2014 IEEE International Conference on},
title={Robust phase unwrapping by convex optimization},
year={2014},
pages={1713-1717},
doi={10.1109/ICIP.2014.7025343},
month={Oct},
}
Demo file
Requirements
Initialization
Ground truth

Adding gaussian noise

Wrapped data

Computing the noise bound
CVX unwrapping
