SVDC (CVPR 2025)
July 8, 2025 · View on GitHub
This repository contains the source code for our paper:
SVDC: Consistent Direct Time-of-Flight Video Depth Completion with Frequency Selective Fusion
Xuan Zhu, Jijun Xiang, Xianqi Wang, Longliang Liu, Yu Wang, Hong Zhang, Fei Guo, Xin Yang
Updates
2025/07/04 —— We released our evaluation code and pretrained models. You can now evaluate SVDC on the test datasets.
Requirements
We provide a conda environment setup file including all of the above dependencies. Create the conda environment by running:
conda env create -n SVDC -f environment.yml
Required Data
To evaluate SVDC, you will need to download the required datasets.
You need to unrar the file and put them in the datasets folder as follows:
|SVDC/
|--configs/
|--datasets/
|--DS_tuihua0/
|--DS_tuihua1/
|--DS_tuihua2/
|--TT_tuihua0/
|--TT_tuihua1/
|--test_DS_tuihua_0.txt
|--test_DS_tuihua_1.txt
...
Evaluation
To evaluate on test datasets, run
python evaluate.py configs/test_paper_DS_0.txt
python evaluate.py configs/test_paper_DS_1.txt
python evaluate.py configs/test_paper_DS_2.txt
python evaluate.py configs/test_paper_TT_0.txt
python evaluate.py configs/test_paper_TT_1.txt
python calculate_metrics.py
Training
To be done.
Citation
If you find our work useful in your research, please consider citing our paper:
@inproceedings{zhu2025svdc,
title={Svdc: Consistent direct time-of-flight video depth completion with frequency selective fusion},
author={Zhu, Xuan and Xiang, Jijun and Wang, Xianqi and Liu, Longliang and Wang, Yu and Zhang, Hong and Guo, Fei and Yang, Xin},
booktitle={Proceedings of the Computer Vision and Pattern Recognition Conference},
pages={16619--16628},
year={2025}
}
Contact
Please feel free to contact me (XuanZhu) at xuanzhu@hust.edu.cn.
Acknowledgements
This project is based on DVSR and DELTAR, we thank the original authors for their excellent work.