Towards Better Data Exploitation In Self-Supervised Monocular Depth Estimation [paper link]
Jinfeng Liu, Lingtong Kong, Jie Yang, Wei Liu
BDEdepth (HRNet18 640x192)This is the PyTorch implementation for BDEdepth. We build it based on the DDP version of Monodepth2 (see Monodepth2-DDP), which have several new features:
- DDP training mode
- Resume from an interrupted training automatically
- Evaluate and log after each epoch
- NYUv2 training and evaluation
- Make3D evaluation
Todo:
- Cityscapes training and evaluation.
If you find our work useful in your research please consider citing our paper:
@misc{liu2023better,
title={Towards Better Data Exploitation In Self-Supervised Monocular Depth Estimation},
author={Jinfeng Liu and Lingtong Kong and Jie Yang and Wei Liu},
year={2023},
eprint={2309.05254},
archivePrefix={arXiv},
primaryClass={cs.CV}
}
Install the dependencies with:
pip install torch==1.9.1+cu111 torchvision==0.10.1+cu111 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
pip install scikit-image timm thop yacs opencv-python h5py
We experiment with PyTorch 1.9.1, CUDA 11.1, Python 3.7. Other torch versions may also be okay.
For KITTI dataset, you can prepare them as done in Monodepth2. Note that we directly train with the raw png images and do not convert them to jpgs. You also need to generate the groundtruth depth maps before training since the code will evaluate after each epoch. For the groundtruth, run the following commands:
### generate raw groundtruth
python export_gt_depth.py --data_path /home/datasets/kitti_raw_data --split eigen
### generate improved groundtruth
python export_gt_depth.py --data_path /home/datasets/kitti_raw_data --split eigen_benchmark
For NYUv2 dataset, you can download the training and testing datasets as done in StructDepth.
For Make3D dataset, you can download it from here.
You can download model weights in this link, including two checkpoint files:
- Pretrained HRNet18 on ImageNet:
HRNet_W18_C_cosinelr_cutmix_300epoch.pth.tar
- Our final KITTI model (640x192) using HRNet18 backone:
final_hrnet18_640x192.pth
Before training, move the pretrained HRNet18 weights, HRNet_W18_C_cosinelr_cutmix_300epoch.pth.tar
, to the folder BDEdepth/hrnet_IN_pretrained
.
cd /path/to/BDEdepth
mkdir hrnet_IN_pretrained
mv /path/to/HRNet_W18_C_cosinelr_cutmix_300epoch.pth.tar ./hrnet_IN_pretrained
And you can see the training scripts in run_kitti.sh and run_nyu.sh. Take the KITTI script as an example:
# CUDA_VISIBLE_DEVICES=0 python train.py \
CUDA_VISIBLE_DEVICES=0,1 python -m torch.distributed.launch --nproc_per_node=2 train.py \
--data_path /home/datasets/kitti_raw_data \
--dataset kitti \
--log_dir /home/jinfengliu/logs \
--exp_name mono_kitti \
--backbone hrnet \
--num_layers 18 \
--width 640 \
--height 192 \
--num_scales 1 \
--batch_size 10 \
--lr_sche_type step \
--learning_rate 1e-4 \
--eta_min 5e-6 \
--num_epochs 20 \
--decay_step 15 \
--decay_rate 0.1 \
--log_frequency 400 \
--save_frequency 400 \
--resume \
--use_local_crop \
--use_patch_reshuffle \
# --pretrained_path xxxx/ckpt.pth
Use CUDA_VISIBLE_DEVICES=0 python train.py
to train with a single GPU. If you want to train with two or more GPUs, then use CUDA_VISIBLE_DEVICES=0,1 python -m torch.distributed.launch --nproc_per_node=2 train.py
for DDP training.
Use --data_path
flag to specify the dataset folder.
Use --log_dir
flag to specify the logging folder.
Use --exp_name
flag to specify the experiment name.
All output files (checkpoints, logs and tensorboard) will be saved in the directory {log_dir}/{exp_name}
.
Use --backbone
flag to choose the depth encoder backbone, resnet or hrnet.
Use --use_local_crop
flag to enable the resizing-cropping augmentation.
Use --use_patch_reshuffle
flag to enable the splitting-permuting augmentation.
Use --pretrained_path
flag to load a pretrained checkpoint if necessary.
Use --split
flag to specify the training split on KITTI (see Monodepth2), and default is eigen_zhou.
Look at options.py to see the range of other training options.
You can see the evaluation script in evaluate.sh.
CUDA_VISIBLE_DEVICES=0 python evaluate_depth.py \
--pretrained_path ./final_hrnet18_640x192.pth \
--backbone hrnet \
--num_layers 18 \
--batch_size 12 \
--width 640 \
--height 192 \
--kitti_path /home/datasets/kitti_raw_data \
--make3d_path /home/datasets/make3d \
--nyuv2_path /home/datasets/nyu_v2 \
# --post_process
This script will evaluate on KITTI (both raw and improved GT), NYUv2 and Make3D together. If you don't want to evaluate on one of these datasets, for example KITTI, just do not specify the corresponding --kitti_path
flag. It will only evaluate on the datasets which you have specified a path flag.
If you want to evalute with post-processing, add the --post_process
flag.
You can predict scaled disparity for a single image with:
python test_simple.py --image_path folder/test_image.jpg --pretrained_path ./final_hrnet18_640x192.pth --backbone hrnet --height 192 --width 640 --save_npy
The --image_path
flag can also be a directory containing several images. In this setting, the script will predict all the images (use --ext
to specify png or jpg) in the directory:
python test_simple.py --image_path folder --pretrained_path ./final_hrnet18_640x192.pth --backbone hrnet --height 192 --width 640 --ext png --save_npy
python test_video.py --image_path folder --pretrained_path ./final_hrnet18_640x192.pth --backbone hrnet --height 192 --width 640 --ext png
Here the --image_path
flag should be a directory containing several video frames. Note that these video frame files should be named in an ascending numerical order. For example, the first frame is named as 0000.png
, the second frame is named as 0001.png
, and etc. Then the script will output a GIF file.
We have used codes from other wonderful open-source projects, Monodepth2, StructDepth, PlaneDepth, RA-Depth. Thanks for their excellent works!