Files
Grounded-SAM-2/lib/test/utils/transform_got10k.py

53 lines
1.9 KiB
Python
Raw Permalink Normal View History

2024-11-19 22:12:54 -08:00
import numpy as np
import os
import shutil
import argparse
import _init_paths
from lib.test.evaluation.environment import env_settings
def transform_got10k(tracker_name, cfg_name):
env = env_settings()
result_dir = env.results_path
src_dir = os.path.join(result_dir, "%s/%s/got10k/" % (tracker_name, cfg_name))
dest_dir = os.path.join(result_dir, "%s/%s/got10k_submit/" % (tracker_name, cfg_name))
if not os.path.exists(dest_dir):
os.makedirs(dest_dir)
items = os.listdir(src_dir)
for item in items:
if "all" in item:
continue
src_path = os.path.join(src_dir, item)
if "time" not in item:
seq_name = item.replace(".txt", '')
seq_dir = os.path.join(dest_dir, seq_name)
if not os.path.exists(seq_dir):
os.makedirs(seq_dir)
new_item = item.replace(".txt", '_001.txt')
dest_path = os.path.join(seq_dir, new_item)
bbox_arr = np.loadtxt(src_path, dtype=np.int, delimiter='\t')
np.savetxt(dest_path, bbox_arr, fmt='%d', delimiter=',')
else:
seq_name = item.replace("_time.txt", '')
seq_dir = os.path.join(dest_dir, seq_name)
if not os.path.exists(seq_dir):
os.makedirs(seq_dir)
dest_path = os.path.join(seq_dir, item)
os.system("cp %s %s" % (src_path, dest_path))
# make zip archive
shutil.make_archive(src_dir, "zip", src_dir)
shutil.make_archive(dest_dir, "zip", dest_dir)
# Remove the original files
shutil.rmtree(src_dir)
shutil.rmtree(dest_dir)
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='transform got10k results.')
parser.add_argument('--tracker_name', type=str, help='Name of tracking method.')
parser.add_argument('--cfg_name', type=str, help='Name of config file.')
args = parser.parse_args()
transform_got10k(args.tracker_name, args.cfg_name)