File size: 1,151 Bytes
99a05f0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# load split.json and make an npz with all the folders in the test split
import argparse
import json
import os
import glob
import numpy as np

BEHAVE_PATH = '/ps/project/datasets/BEHAVE/sequences/'

if __name__ == '__main__':
    parser = argparse.ArgumentParser()
    parser.add_argument('--data_dir', type=str, default=BEHAVE_PATH)
    parser.add_argument('--split_file', type=str, default='data/preprocess/behave_test/split.json')
    parser.add_argument('--out_file', type=str, default='data/dataset_extras/behave/behave_simple_test.npz')
    args = parser.parse_args()

    with open(args.split_file, 'r') as f:
        split = json.load(f)

    test_split = split['test']

    # structs we use
    imgnames_ = []

    data = {}
    for seq_name in test_split:
        print(seq_name)
        seq_dir = os.path.join(args.data_dir, seq_name)
        # get recusive images in the seq_dir folder
        images = glob.glob(os.path.join(seq_dir, '**/*color.jpg'), recursive=True)
        print(len(images))
        images.sort()
        imgnames_.extend(images)

    np.savez(args.out_file, imgname=imgnames_,)
    print('Saved to ', args.out_file)