AndreeaDogaru / Gen3DSR

Generalizable 3D Scene Reconstruction via Divide and Conquer from a Single View

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gen3DSR: Generalizable 3D Scene Reconstruction via Divide and Conquer from a Single View

This repository contains the official implementation of the paper titled Generalizable 3D Scene Reconstruction via Divide and Conquer from a Single View.

Website Paper

Andreea Dogaru, Mert Özer, Bernhard Egger

results

📢 News

15.07.2024: Inference code is released.
04.04.2024: Paper is available on .

🎮 Usage

  • Interactive scene reconstruction examples can be found on our project page.
  • A Dockerfile is provided for easy setup:
docker build --build-arg HF_TOKEN=<USER_TOKEN> -t gen3dsr .
docker run -it --gpus all \
    --mount type=bind,source="$(pwd)/src",target=/app/src \
    --mount type=bind,source="$(pwd)/imgs",target=/app/imgs \
    --mount type=bind,source="$(pwd)/out",target=/app/out \
    gen3dsr python run.py --config ./configs/image.yaml
  • Alternatively, after following the detailed local installation instructions presented in INSTALL.md, the code can be run as follows:
cd src
python run.py --config ./configs/image.yaml \
    scene.attributes.img_path='../imgs/demo_1.jpg' \
    scene.save_dir='../out/demo_1'
  • We recommend the user to check out the different inference options in image.yaml.
  • The reconstruction can be found in <scene.save_dir>/reconstruction.
  • The code requires minimum 20GB of VRAM.

🎓 Citation

@article{Dogaru2024Gen3DSR,
    title={Generalizable 3D Scene Reconstruction via Divide and Conquer from a Single View},
    author={Dogaru, Andreea and Özer, Mert and Egger, Bernhard},
    journal={arXiv:2404.03421},
    year={2024}
}

🙌 Acknowledgements

This work is built on many amazing research works and open-source projects, thanks a lot to all the authors for sharing!

This work was funded by the German Federal Ministry of Education and Research (BMBF), FKZ: 01IS22082 (IRRW). The authors are responsible for the content of this publication. The authors gratefully acknowledge the scientific support and HPC resources provided by the Erlangen National High Performance Computing Center (NHR@FAU) of the Friedrich-Alexander-Universität Erlangen-Nürnberg (FAU) under the NHR project b112dc IRRW. NHR funding is provided by federal and Bavarian state authorities. NHR@FAU hardware is partially funded by the German Research Foundation (DFG) – 440719683.

📝 License

The code is released under the CC BY 4.0 LICENSE.

About

Generalizable 3D Scene Reconstruction via Divide and Conquer from a Single View

License:Creative Commons Attribution 4.0 International


Languages

Language:Python 91.8%Language:Dockerfile 8.2%