-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsort_dataset.py
71 lines (58 loc) · 2.06 KB
/
sort_dataset.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# @copyright CEA-LIST/DIASI/SIALV/LVA (2020)
# @author CEA-LIST/DIASI/SIALV/LVA <quentin.bouniot@cea.fr>
# @license CECILL
import os
from shutil import copyfile
from pathlib import Path
# You only need to change this line to your dataset download path
download_path = Path('')
if not os.path.isdir(download_path):
print('please change the download_path')
save_path = download_path / 'sorted'
if not os.path.isdir(save_path):
os.mkdir(save_path)
# query
query_path = download_path / 'query'
query_save_path = save_path / 'query'
if not os.path.isdir(query_save_path):
os.mkdir(query_save_path)
for root, dirs, files in os.walk(query_path, topdown=True):
for name in files:
if not (name[-3:]=='jpg'or name[-3:]=='png'):
continue
ID = name.split('_')
src_path = query_path / name
dst_path = query_save_path / ID[0]
if not os.path.isdir(dst_path):
os.mkdir(dst_path)
copyfile(src_path, dst_path / name)
#gallery
gallery_path = download_path / 'bounding_box_test'
gallery_save_path = save_path / 'gallery'
if not os.path.isdir(gallery_save_path):
os.mkdir(gallery_save_path)
for root, dirs, files in os.walk(gallery_path, topdown=True):
for name in files:
if not (name[-3:]=='jpg'or name[-3:]=='png'):
continue
ID = name.split('_')
src_path = gallery_path / name
dst_path = gallery_save_path / ID[0]
if not os.path.isdir(dst_path):
os.mkdir(dst_path)
copyfile(src_path, dst_path / name)
#train
train_path = download_path / 'bounding_box_train'
train_save_path = save_path / 'train'
if not os.path.isdir(train_save_path):
os.mkdir(train_save_path)
for root, dirs, files in os.walk(train_path, topdown=True):
for name in files:
if not (name[-3:]=='jpg'or name[-3:]=='png'):
continue
ID = name.split('_')
src_path = train_path / name
dst_path = train_save_path / ID[0]
if not os.path.isdir(dst_path):
os.mkdir(dst_path)
copyfile(src_path, dst_path / name)