├── .gitignore ├── LICENSE ├── __init__.py ├── node.py ├── readme.md ├── requirements.txt ├── video_depth_anything ├── dinov2.py ├── dinov2_layers │ ├── __init__.py │ ├── attention.py │ ├── block.py │ ├── drop_path.py │ ├── layer_scale.py │ ├── mlp.py │ ├── patch_embed.py │ └── swiglu_ffn.py ├── dpt.py ├── dpt_temporal.py ├── motion_module │ ├── attention.py │ └── motion_module.py ├── util │ ├── blocks.py │ └── transform.py ├── utils │ ├── dc_utils.py │ └── util.py └── video_depth.py └── workflows └── video_depth_anything.json /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .DS_Store 3 | *.mp4 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/__init__.py -------------------------------------------------------------------------------- /node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/node.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/requirements.txt -------------------------------------------------------------------------------- /video_depth_anything/dinov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/dinov2.py -------------------------------------------------------------------------------- /video_depth_anything/dinov2_layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/dinov2_layers/__init__.py -------------------------------------------------------------------------------- /video_depth_anything/dinov2_layers/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/dinov2_layers/attention.py -------------------------------------------------------------------------------- /video_depth_anything/dinov2_layers/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/dinov2_layers/block.py -------------------------------------------------------------------------------- /video_depth_anything/dinov2_layers/drop_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/dinov2_layers/drop_path.py -------------------------------------------------------------------------------- /video_depth_anything/dinov2_layers/layer_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/dinov2_layers/layer_scale.py -------------------------------------------------------------------------------- /video_depth_anything/dinov2_layers/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/dinov2_layers/mlp.py -------------------------------------------------------------------------------- /video_depth_anything/dinov2_layers/patch_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/dinov2_layers/patch_embed.py -------------------------------------------------------------------------------- /video_depth_anything/dinov2_layers/swiglu_ffn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/dinov2_layers/swiglu_ffn.py -------------------------------------------------------------------------------- /video_depth_anything/dpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/dpt.py -------------------------------------------------------------------------------- /video_depth_anything/dpt_temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/dpt_temporal.py -------------------------------------------------------------------------------- /video_depth_anything/motion_module/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/motion_module/attention.py -------------------------------------------------------------------------------- /video_depth_anything/motion_module/motion_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/motion_module/motion_module.py -------------------------------------------------------------------------------- /video_depth_anything/util/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/util/blocks.py -------------------------------------------------------------------------------- /video_depth_anything/util/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/util/transform.py -------------------------------------------------------------------------------- /video_depth_anything/utils/dc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/utils/dc_utils.py -------------------------------------------------------------------------------- /video_depth_anything/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/utils/util.py -------------------------------------------------------------------------------- /video_depth_anything/video_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/video_depth_anything/video_depth.py -------------------------------------------------------------------------------- /workflows/video_depth_anything.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Video-Depth-Anything/HEAD/workflows/video_depth_anything.json --------------------------------------------------------------------------------