Skip to content

Latest commit

 

History

History
63 lines (40 loc) · 2.23 KB

README.md

File metadata and controls

63 lines (40 loc) · 2.23 KB

Deformation-Monitoring

The source code of Paper: Deep learning for localized rapid deformation detection and InSAR phase unwrapping

Authors: Zhipeng Wu, Student Member, IEEE, Teng Wang, Yingjie Wang, Robert Wang, Senior Member, IEEE, Daqing Ge

**The trained PUNet is mainly applied to unwrap very localized, rapidly deforming areas, particularly the mining subsidence as we stated in the manuscript. The proposed dataset generation strategy allows for richer samples, which can enable the retrained PUNet to cope with more complex situations. **

If you want to retrain the networks, see Deformation-Monitoring-Dev.

Introduction

This is a TensorFlow (1.13.1) implementation of PUNet. It can be used to unwrap interferograms with dense fringes and severe noise. The resolution of the input interferogram should be about 20m×20m. Any size of the interferogram can be input, but 180×180 pixels is recommended. The input data should be binary files (*.wzp, float32) or Tiff files (*.tif, float32).

For reading and writing binary files, see imreadbin.m and imreadbin.m in MatlabToolbox.

img

Installation

The code was tested with Python 3.6.

  1. Clone the repo:

    git clone https://github.com/Wu-Patrick/Deformation-Monitoring.git
    cd Deformation-Monitorin
  2. Install dependencies:

    pip install -r requirements.txt

Unwrapping

  1. Input arguments: (see full input arguments via python runPUNet.py --help):
usage: runPUNet.py [-h] [--input INPUT] [--output OUTPUT]
                   [--outputPng OUTPUTPNG] [--rows ROWS] [--cols COLS]
                   [--ckpt_dir CKPT_DIR]
  1. Run the example:
python runPUNet.py
# or
python runPUNet.py --input data/dataset1/interf --output data/dataset1/unwrapped --outputPng 1 --rows 180 --cols 180
# or
python runPUNet.py --input data/dataset2/interf/300_20190120-20190201.wzp --output data/dataset2/unwrapped --outputPng 1 --rows 300 --cols 300

Acknowledgement

TensorFlow

Statement

The code can only be used for personal academic research testing.