Spaces:
Runtime error
Runtime error
File size: 506 Bytes
864ebc9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Copyright (C) 2024-present Naver Corporation. All rights reserved.
# Licensed under CC BY-NC-SA 4.0 (non-commercial use only).
#
# --------------------------------------------------------
# DUSt3R repo root import
# --------------------------------------------------------
import os.path as path
import sys
HERE_PATH = path.normpath(path.dirname(__file__))
DUST3R_REPO_PATH = path.normpath(path.join(HERE_PATH, "../"))
# workaround for sibling import
sys.path.insert(0, DUST3R_REPO_PATH)
|