Skip to content
/ Murre Public
forked from zju3dv/Murre

Code for "Multi-view Reconstruction via SfM-guided Monocular Depth Estimation". CVPR 2025

Notifications You must be signed in to change notification settings

ibaris/Murre

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Multi-view Reconstruction via SfM-guided Monocular Depth Estimation

teaser

Multi-view Reconstruction via SfM-guided Monocular Depth Estimation
Haoyu Guo*, He Zhu*, Sida Peng, Haotong Lin, Yunzhi Yan, Tao Xie, Wenguan Wang, Xiaowei Zhou, Hujun Bao
CVPR 2025

Installation

Clone this repository

git clone https://github.com/zju3dv/Murre.git

Set up the environment

You can create a conda environment named 'murre' by running:

conda env create -f environment.yml

Checkpoint

The pretrained model weights can be downloaded from here.

Inference

Parse SfM output

cd sfm_depth
python get_sfm_depth.py --input_sfm_dir ${your_input_path} --output_sfm_dir ${your_output_path} --processing_res ${your_desired_resolution}

Make sure that the input is organized in the format of COLMAP results. You can specify the processing resolution to trade off between inference speed and reconstruction precision.

The parsed sparse depth maps, camera intrinsics, camera poses will be stored in ${your_output_path}/sparse_depth, ${your_output_path}/intrinsic, and ${your_output_path}/pose respectively.

SfM-guided monocular depth estimation

Run the Murre model to perform SfM-guided monocular depth estimation:

python run.py --checkpoint ${your_ckpt_path} --input_rgb_dir ${your_rgb_path} --input_sdpt_dir ${your_sparse_depth_path} --output_dir ${your_output_path} --denoise_steps 10 --ensemble_size 5 --processing_res ${your desired resolution}

Make sure that the same proccesing resolution is used as the first step.

TSDF fusion

Run the following to perform TSDF fusion on depth maps produced by Murre:

python tsdf_fusion.py --image_dir ${your_rgb_path} --depth_dir ${your_depth_path} --intrinsic_dir ${your_intrinsic_path} --pose_dir ${your_pose_path}

Please pass in the depth maps produced by Murre and camera parameters parsed in the first step.

Citation

If you find this code useful for your research, please use the following BibTeX entry.

@inproceedings{guo2025murre,
  title={Multi-view Reconstruction via SfM-guided Monocular Depth Estimation},
  author={Guo, Haoyu and Zhu, He and Peng, Sida and Lin, Haotong and Yan, Yunzhi and Xie, Tao and Wang, Wenguan and Zhou, Xiaowei and Bao, Hujun},
  booktitle={CVPR},
  year={2025},
}

Acknowledgement

We sincerely thank the following excellent projects, from which our work has greatly benefited.

About

Code for "Multi-view Reconstruction via SfM-guided Monocular Depth Estimation". CVPR 2025

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%