We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1fad3b commit c17b589Copy full SHA for c17b589
cosypose/scripts/download.py
@@ -1,4 +1,5 @@
1
import argparse
2
+import os
3
import zipfile
4
import wget
5
import logging
@@ -85,6 +86,7 @@ def main():
85
86
if args.bop_extra_files == 'tless':
87
# https://github.com/kirumang/Pix2Pose#download-pre-trained-weights
88
gdrive_download(f'bop_datasets/tless/all_target_tless.json', BOP_DS_DIR / 'tless')
89
+ os.symlink(BOP_DS_DIR / 'tless/models_eval', BOP_DS_DIR / 'tless/models')
90
elif args.bop_extra_files == 'ycbv':
91
# Friendly names used with YCB-Video
92
gdrive_download(f'bop_datasets/ycbv/ycbv_friendly_names.txt', BOP_DS_DIR / 'ycbv')
0 commit comments