From 222a5d081694c6de96f72125c84bddc41b5843b8 Mon Sep 17 00:00:00 2001 From: rui li Date: Sat, 22 Jun 2024 12:06:09 +0800 Subject: [PATCH] update the correct model import for metric depth estimation --- metric_depth/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metric_depth/README.md b/metric_depth/README.md index fc84a2f..c46d606 100644 --- a/metric_depth/README.md +++ b/metric_depth/README.md @@ -34,7 +34,7 @@ Download the checkpoints listed [here](#pre-trained-models) and put them under t import cv2 import torch -from depth_anything_v2.dpt import DepthAnythingV2 +from metric_depth.depth_anything_v2.dpt import DepthAnythingV2 model_configs = { 'vits': {'encoder': 'vits', 'features': 64, 'out_channels': [48, 96, 192, 384]},