Depth-Anything-V2_Safetensors
Collection
The Depth Anything V2 models were proposed in the Depth Anything V2 Paper found here - https://arxiv.org/abs/2406.09414
•
3 items
•
Updated
Depth Anything V2 is trained from 595K synthetic labeled images & 62M+ real unlabeled images, providing the most capable monocular depth estimation (MDE) model with the following features:
git clone https://github.com/MackinationsAi/Upgraded-Depth-Anything-V2.git
cd Upgraded-Depth-Anything-V2
one_click_install.bat
Please refer to the README.md for actual usage.
cd Upgraded-Depth-Anything-V2
venv\scripts\activate
python test.py /path/to/your/image.jpg (or .png)
Create a test.py script using the code below:
import cv2
import torch
import numpy as np
import os
import argparse
from safetensors.torch import load_file
from depth_anything_v2.dpt import DepthAnythingV2
# Argument parser for input image path
parser = argparse.ArgumentParser(description="Depth map inference using DepthAnythingV2 model.")
parser.add_argument("input_image_path", type=str, help="Path to the input image")
args = parser.parse_args()
# Determine the directory of this script
script_dir = os.path.dirname(os.path.abspath(__file__))
# Set output path relative to the script directory
output_image_path = os.path.join(script_dir, "base_udav2_hf-code-test.png")
checkpoint_path = os.path.join(script_dir, "checkpoints", "depth_anything_v2_vits.safetensors")
# Device selection: CUDA, MPS, or CPU
if torch.cuda.is_available():
device = torch.device('cuda')
elif torch.backends.mps.is_available():
device = torch.device('mps')
else:
device = torch.device('cpu')
model = DepthAnythingV2(encoder='vitb', features=64, out_channels=[48, 96, 192, 384])
state_dict = load_file(checkpoint_path, device='cpu')
model.load_state_dict(state_dict)
model.to(device)
model.eval()
# Load the input image
raw_img = cv2.imread(args.input_image_path)
# Infer the depth map
depth = model.infer_image(raw_img) # HxW raw depth map
# Normalize the depth map to 0-255 for saving as an image
depth_normalized = cv2.normalize(depth, None, 0, 255, cv2.NORM_MINMAX)
depth_normalized = depth_normalized.astype(np.uint8)
cv2.imwrite(output_image_path, depth_normalized)
print(f"Depth map saved at {output_image_path}")
If you find this project useful, please consider citing MackinationsAi & the following:
@article{depth_anything_v2,
title={Depth Anything V2},
author={Yang, Lihe & Kang, Bingyi & Huang, Zilong & Zhao, Zhen & Xu, Xiaogang & Feng, Jiashi & Zhao, Hengshuang},
journal={arXiv:2406.09414},
year={2024}
}
@inproceedings{depth_anything_v1,
title={Depth Anything: Unleashing the Power of Large-Scale Unlabeled Data},
author={Yang, Lihe & Kang, Bingyi & Huang, Zilong & Xu, Xiaogang & Feng, Jiashi & Zhao, Hengshuang},
booktitle={CVPR},
year={2024}
}