├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── depth_pro ├── LICENSE ├── __init__.py ├── cli │ ├── __init__.py │ └── run.py ├── depth_pro.py ├── eval │ ├── boundary_metrics.py │ └── dis5k_sample_list.txt ├── network │ ├── __init__.py │ ├── decoder.py │ ├── encoder.py │ ├── fov.py │ ├── vit.py │ └── vit_factory.py └── utils.py ├── example ├── pexels-rob-brennecke-1709780672-28506544.jpg ├── workflow.png └── workflow_compare_marigold.png ├── nodes.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/__init__.py -------------------------------------------------------------------------------- /depth_pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/LICENSE -------------------------------------------------------------------------------- /depth_pro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/__init__.py -------------------------------------------------------------------------------- /depth_pro/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/cli/__init__.py -------------------------------------------------------------------------------- /depth_pro/cli/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/cli/run.py -------------------------------------------------------------------------------- /depth_pro/depth_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/depth_pro.py -------------------------------------------------------------------------------- /depth_pro/eval/boundary_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/eval/boundary_metrics.py -------------------------------------------------------------------------------- /depth_pro/eval/dis5k_sample_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/eval/dis5k_sample_list.txt -------------------------------------------------------------------------------- /depth_pro/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/network/__init__.py -------------------------------------------------------------------------------- /depth_pro/network/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/network/decoder.py -------------------------------------------------------------------------------- /depth_pro/network/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/network/encoder.py -------------------------------------------------------------------------------- /depth_pro/network/fov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/network/fov.py -------------------------------------------------------------------------------- /depth_pro/network/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/network/vit.py -------------------------------------------------------------------------------- /depth_pro/network/vit_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/network/vit_factory.py -------------------------------------------------------------------------------- /depth_pro/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/depth_pro/utils.py -------------------------------------------------------------------------------- /example/pexels-rob-brennecke-1709780672-28506544.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/example/pexels-rob-brennecke-1709780672-28506544.jpg -------------------------------------------------------------------------------- /example/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/example/workflow.png -------------------------------------------------------------------------------- /example/workflow_compare_marigold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/example/workflow_compare_marigold.png -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-Depth-Pro/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | timm>=0.9.16 2 | numpy<2 --------------------------------------------------------------------------------