首页
企业/组织
数据集导航
新建镜像项目
新建托管项目
登录
注册
镜像项目
/
Stereo-RCNN
分享
Activities
1
Repositories
13
Pull Requests
Roadmap
分支
3
1.0
master
mono
Stereo-RCNN
/
_init_paths.py
History
View
编辑
Download
import os.path as osp import sys def add_path(path): if path not in sys.path: sys.path.insert(0, path) this_dir = osp.dirname(__file__) # Add lib to PYTHONPATH lib_path = osp.join(this_dir, 'lib') add_path(lib_path)
Loading...