-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
prepare_viper.py
80 lines (64 loc) · 2.44 KB
/
prepare_viper.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
72
73
74
75
76
77
78
import os
from shutil import copyfile
import numpy as np
#http://users.soe.ucsc.edu/~manduchi/VIPeR.v1.0.zip
download_path = '../VIPeR'
if not os.path.isdir(download_path):
print('please change the download_path')
save_path = download_path + '/pytorch'
if not os.path.isdir(save_path):
os.mkdir(save_path)
#train_all
ID_list = []
train_path = download_path + '/cam_a'
train_save_path = download_path + '/pytorch/all'
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:]=='bmp':
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)
ID_list.append(ID[0])
copyfile(src_path, dst_path + '/' + 'ca_'+name)
train_path = download_path + '/cam_b'
train_save_path = download_path + '/pytorch/all'
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:]=='bmp':
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 + '/' + 'cb_'+name)
np.random.seed(0)
for ii in range(1):
index = np.random.permutation(632)
index = index[0:316]
test_save_path = download_path + '/pytorch/' #'/test%d'%ii
if not os.path.isdir(test_save_path):
os.mkdir(test_save_path)
os.mkdir(test_save_path + '/train')
os.mkdir(test_save_path + '/query')
os.mkdir(test_save_path + '/gallery')
for i in range(632):
dir_name = ID_list[i]
if i in index:
src_path_1 = train_save_path + '/' + dir_name
dst_path_1 = test_save_path+'/train/'
os.system('cp -r %s %s'%(src_path_1, dst_path_1))
else:
src_path_1 = train_save_path + '/' + dir_name #+ '/ca_*.bmp'
#src_path_2 = train_save_path + '/' + dir_name + '/cb_*.bmp'
dst_path_1 = test_save_path+'/query/'
#dst_path_2 = test_save_path+'/gallery/' + dir_name
os.system('cp -r %s %s'%(src_path_1, dst_path_1))
os.system('cp -r %s %s'%(test_save_path+'/query/*', test_save_path+'/gallery/'))