Spaces:
Runtime error
Runtime error
File size: 689 Bytes
2df809d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# Copyright (C) 2024-present Naver Corporation. All rights reserved.
# Licensed under CC BY-NC-SA 4.0 (non-commercial use only).
#
# --------------------------------------------------------
# modified from DUSt3R
import sys
import os.path as path
HERE_PATH = path.normpath(path.dirname(__file__))
CROCO_REPO_PATH = path.normpath(path.join(HERE_PATH, "../../croco"))
CROCO_MODELS_PATH = path.join(CROCO_REPO_PATH, "models")
if path.isdir(CROCO_MODELS_PATH):
sys.path.insert(0, CROCO_REPO_PATH)
else:
raise ImportError(
f"croco is not initialized, could not find: {CROCO_MODELS_PATH}.\n "
"Did you forget to run 'git submodule update --init --recursive' ?"
)
|