gitextract_fes_sm48/ ├── README.md ├── dataset/ │ ├── README.txt │ ├── test/ │ │ ├── _solarized.py │ │ ├── _structure_classes.py │ │ ├── convert.py │ │ ├── create_test_lmdb.sh │ │ ├── crop.py │ │ └── process_test.sh │ └── train/ │ ├── create_train_lmdb.sh │ ├── get_train_scenes.m │ ├── process_raw.m │ ├── split_train_set.sh │ ├── train_augment0.py │ ├── train_augment1.py │ └── train_augment2.py ├── eval_depth.py ├── get_depth.py ├── net_deploy.prototxt ├── net_train.prototxt ├── solver.prototxt ├── source/ │ ├── README.txt │ ├── global_context_network/ │ │ ├── abs/ │ │ │ ├── net_deploy.prototxt │ │ │ └── net_train.prototxt │ │ ├── eval_depth.py │ │ ├── log_abs/ │ │ │ ├── net_deploy.prototxt │ │ │ └── net_train.prototxt │ │ ├── norm/ │ │ │ ├── net_deploy.prototxt │ │ │ └── net_train.prototxt │ │ ├── sc-inv/ │ │ │ ├── net_deploy.prototxt │ │ │ └── net_train.prototxt │ │ ├── solver.prototxt │ │ ├── test_depth.py │ │ └── train.py │ ├── gradient_network/ │ │ ├── abs/ │ │ │ ├── net_deploy.prototxt │ │ │ └── net_train.prototxt │ │ ├── eval_grad.py │ │ ├── filter.prototxt │ │ ├── norm/ │ │ │ ├── net_deploy.prototxt │ │ │ └── net_train.prototxt │ │ ├── solver.prototxt │ │ ├── test_grad.py │ │ └── train.py │ ├── joint/ │ │ ├── architecture_A/ │ │ │ ├── net_deploy.prototxt │ │ │ └── net_train.prototxt │ │ ├── architecture_B/ │ │ │ ├── net_deploy.prototxt │ │ │ └── net_train.prototxt │ │ ├── eval_depth.py │ │ ├── eval_grad.py │ │ ├── filter.prototxt │ │ ├── solver.prototxt │ │ ├── test_depth.py │ │ ├── test_grad.py │ │ └── train.py │ └── refining_network/ │ ├── abs/ │ │ ├── net_deploy.prototxt │ │ └── net_train.prototxt │ ├── eval_depth.py │ ├── log_abs/ │ │ ├── net_deploy.prototxt │ │ └── net_train.prototxt │ ├── norm_abs/ │ │ ├── net_deploy.prototxt │ │ └── net_train.prototxt │ ├── norm_abs_global_only/ │ │ ├── net_deploy.prototxt │ │ └── net_train.prototxt │ ├── sc-inv_abs/ │ │ ├── net_deploy.prototxt │ │ └── net_train.prototxt │ ├── solver.prototxt │ ├── test_depth.py │ └── train.py └── test_depth.py