赞
踩
https://www.codetd.com/article/10334372
行人reid 常用数据集以及转换成market1501感谢作者,
</div>
<div class="ga-title">
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle" style="display: block; text-align: center; height: 200px;" data-ad-layout="in-article" data-ad-format="fluid" data-ad-client="ca-pub-3954339303763081" data-ad-slot="3382084344" data-adsbygoogle-status="done"><ins id="aswift_0_expand" style="display:inline-table;border:none;height:200px;margin:0;padding:0;position:relative;visibility:visible;width:1020px;background-color:transparent;"><ins id="aswift_0_anchor" style="display:block;border:none;height:200px;margin:0;padding:0;position:relative;visibility:visible;width:1020px;background-color:transparent;"><iframe id="aswift_0" name="aswift_0" style="left:0;position:absolute;top:0;border:0;width:1020px;height:200px;" src="https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-3954339303763081&output=html&h=200&slotname=3382084344&adk=581152618&adf=3102257025&w=1020&fwrn=4&lmt=1591581465&rafmt=11&psa=1&guci=2.2.0.0.2.2.0.0&format=1020x200&url=https%3A%2F%2Fwww.codetd.com%2Farticle%2F10334372&flash=0&wgl=1&adsid=NT&dt=1591581464685&bpp=12&bdt=190&idt=248&shv=r20200602&cbv=r20190131&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dff08413d6d2dba61%3AT%3D1591581228%3AS%3DALNI_MbShZ10mGgp4yAIyk5AH384StJGmA&crv=1&correlator=4256451388552&frm=20&pv=2&ga_vid=1349411240.1589325260&ga_sid=1591581465&ga_hid=1157620213&ga_fc=0&icsg=2228010&dssz=21&mdo=0&mso=8&rplot=4&u_tz=480&u_his=15&u_java=0&u_h=1080&u_w=1920&u_ah=1040&u_aw=1920&u_cd=24&u_nplug=0&u_nmime=0&adx=84&ady=214&biw=1537&bih=908&scr_x=0&scr_y=1008&eid=21065532%2C42530452%2C42530454&oid=3&pvsid=4456014601380787&pem=247&rx=0&eae=0&fc=896&brdim=218%2C85%2C218%2C85%2C1920%2C0%2C1566%2C1016%2C1554%2C908&vis=1&rsz=%7C%7CpeE%7C&abl=CS&pfx=0&fu=8344&bc=29&ifi=1&uci=a!1&xpc=XSTzIHOCkA&p=https%3A//www.codetd.com&dtd=333" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" allowfullscreen="true" data-google-container-id="a!1" data-load-complete="true" data-google-query-id="CLOgt_-O8ekCFRAZKgoduf4JKg" width="1020" height="200" frameborder="0"></iframe></ins></ins></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="article-content"><link rel="stylesheet" href="https://csdnimg.cn/release/phoenix/template/css/ck_htmledit_views-833878f763.css">
常用的reID数据集如图所示
market1501数据集的具体介绍可以看看这个 http://blog.fangchengjin.cn/reid-market-1501.html
import os
- 1
def make_market_dir(dst_dir=’./’):
market_root = os.path.join(dst_dir, ‘market1501’)
train_path = os.path.join(market_root, ‘bounding_box_train’)
query_path = os.path.join(market_root, ‘query’)
test_path = os.path.join(market_root, ‘bounding_box_test’)
<span class="hljs-keyword">if</span> <span class="hljs-keyword">not</span> os.path.exists(train_path):
os.makedirs(train_path)
<span class="hljs-keyword">if</span> <span class="hljs-keyword">not</span> os.path.exists(query_path):
os.makedirs(query_path)
<span class="hljs-keyword">if</span> <span class="hljs-keyword">not</span> os.path.exists(test_path):
os.makedirs(test_path)
if name == ‘main’:
make_market_dir(dst_dir=‘E:/reID’)
这样就创建出来我们需要的几个文件夹了
import re
import os
import shutil
- 1
- 2
- 3
def extract_market(src_path, dst_dir):
img_names = os.listdir(src_path)
pattern = re.compile(r’([-\d]+)_c(\d)’)
pid_container = set()
for img_name in img_names:
if ‘.jpg’ not in img_name:
continue
print(img_name)
# pid: 每个人的标签编号 1
# _ : 摄像头号 2
pid, _ = map(int, pattern.search(img_name).groups())
# 去掉没用的图片
if pid == 0 or pid == -1:
continue
shutil.copy(os.path.join(src_path, img_name), os.path.join(dst_dir, img_name))
if name == ‘main’:
src_train_path = r’D:\data\market1501\bounding_box_train’
src_query_path = r’D:\data\market1501\query’
src_test_path = r’D:\data\market1501\bounding_box_test’
# 将整个market1501数据集作为训练集
dst_dir = r’E:\reID\market1501\bounding_box_train’
extract_market(src_train_path, dst_dir)
extract_market(src_query_path, dst_dir)
extract_market(src_test_path, dst_dir)
抽取的结果如图所示,现在一共有 29419 张图片, ID从0001到1501一共1501 个不同ID的行人。
具体介绍看这个:http://blog.fangchengjin.cn/reid-cuhk03.html
import glob
import re
import os.path as osp
import shutil
- 1
- 2
- 3
- 4
import re
import os
import shutil
def extract_cuhk03(src_path, dst_dir):
img_names = os.listdir(src_path)
pattern = re.compile(r’([-\d]+)c(\d)([\d]+)’)
pid_container = set()
for img_name in img_names:
if ‘.png’ not in img_name and ‘.jpg’ not in img_name:
continue
print(img_name)
# pid: 每个人的标签编号 1
# camid : 摄像头号 2
pid, camid, fname = map(int, pattern.search(img_name).groups())
# 这里注意需要加上前面的market1501数据集的最后一个ID 1501
# 在前面数据集的最后那个ID基础上继续往后排
pid += 1501
dst_img_name = str(pid).zfill(6) + ‘_c’ + str(camid) + ‘_CUHK’ + str(fname) + ‘.jpg’
shutil.copy(os.path.join(src_path, img_name), os.path.join(dst_dir, dst_img_name))
if name == ‘main’:
src_train_path = r’D:\data\cuhk03-np\detected\bounding_box_train’
src_query_path = r’D:\data\cuhk03-np\detected\query’
src_test_path = r’D:\data\cuhk03-np\detected\bounding_box_test’
dst_dir = r’E:\reID\market1501\bounding_box_train’
extract_cuhk03(src_train_path, dst_dir)
extract_cuhk03(src_query_path, dst_dir)
extract_cuhk03(src_test_path, dst_dir)
转换结果如图所示,CUHK03一共有 14097 张图片, ID从001502到002968一共1467个不同ID的行人。
import glob
import re
import os.path as osp
import shutil
- 1
- 2
- 3
- 4
def msmt2market(dir_path, list_path, dst_dir, prev_pid):
with open(list_path, ‘r’) as txt:
lines = txt.readlines()
pid_container = set()
for img_idx, img_info in enumerate(lines):
img_path, pid = img_info.split(’ ‘)
pid = int(pid) + prev_pid + 1 # 2969 5121
camid = int(img_path.split(’_’)[2])
img_path = osp.join(dir_path, img_path)
name = img_path.split(’/’)[-1] # ‘0001_c2_f0046182.jpg’
Newdir = osp.join(dst_dir, str(pid).zfill(6) + ‘c’ + str(camid) + '’ + name) # 用字符串函数zfill 以0补全所需位数
shutil.copy(img_path, Newdir) # 复制一个文件到一个文件或一个目录
<span class="hljs-comment"># check if pid starts from 0 and increments with 1</span>
<span class="hljs-keyword">for</span> idx, pid <span class="hljs-keyword">in</span> enumerate(pid_container):
<span class="hljs-keyword">assert</span> idx == pid, <span class="hljs-string">"See code comment for explanation"</span>
if name == ‘main’:
dataset_dir = r’D:\data\MSMT17_V2’
train_dir = osp.join(dataset_dir, ‘mask_train_v2’)
test_dir = osp.join(dataset_dir, ‘mask_test_v2’)
list_train_path = osp.join(dataset_dir, ‘list_train.txt’)
list_val_path = osp.join(dataset_dir, ‘list_val.txt’)
list_query_path = osp.join(dataset_dir, ‘list_query.txt’)
list_gallery_path = osp.join(dataset_dir, ‘list_gallery.txt’)
dst_dir = <span class="hljs-string">r'E:\reID\market1501\bounding_box_train'</span>
msmt2market(train_dir, list_train_path, dst_dir, <span class="hljs-number">2968</span>)
msmt2market(train_dir, list_val_path, dst_dir, <span class="hljs-number">2968</span>)
msmt2market(test_dir, list_query_path, dst_dir, <span class="hljs-number">4009</span>)
msmt2market(test_dir, list_gallery_path, dst_dir, <span class="hljs-number">4009</span>)
转换结果如图所示,MSMT17一共有 126441 张图片, ID从002969到007069一共1467个不同ID的行人。
到现在以及完成了除了duke以外的几个大型主流数据集的转换,duke数据集想留作测试,体现出模型的泛化能力。
目前的统计结果如下图所示,训练集现在已经有将近17w的图片,ID一共有7069个。
import re
import os
import shutil
- 1
- 2
- 3
def extract_viper(src_path, dst_dir, camid=1):
img_names = os.listdir(src_path)
pattern = re.compile(r’([\d]+)_([\d]+)’)
pid_container = set()
for img_name in img_names:
if ‘.bmp’ not in img_name:
continue
print(img_name)
pid, fname = map(int, pattern.search(img_name).groups())
# 这里注意需要加上前面的数据集的最后一个ID 7069
# 由于viper数据集ID是从0开始,因此需要+1
pid += 7069 + 1
dst_img_name = str(pid).zfill(6) + ‘_c’ + str(camid) + ‘_viper’ + str(fname) + ‘.jpg’
shutil.copy(os.path.join(src_path, img_name), os.path.join(dst_dir, dst_img_name))
if name == ‘main’:
src_cam_a = r’D:\data\viper\cam_a’
src_cam_b = r’D:\data\viper\cam_b’
dst_dir = r’E:\reID\market1501\bounding_box_train’
extract_viper(src_cam_a, dst_dir, camid=<span class="hljs-number">1</span>)
extract_viper(src_cam_b, dst_dir, camid=<span class="hljs-number">2</span>)
转换后的viper数据集一共有1264张图片, ID从007070到007943一共1467个不同ID的行人。需要注意这里ID不是连续的,不过只要ID跟之前不重复即可。
import re
import os
import shutil
- 1
- 2
- 3
def extract_SenseReID(src_path, dst_dir, fname):
img_names = os.listdir(src_path)
pattern = re.compile(r’([\d]+)_([\d]+)’)
pid_container = set()
for img_name in img_names:
if ‘.jpg’ not in img_name:
continue
print(img_name)
pid, camid = map(int, pattern.search(img_name).groups())
pid += 7943 + 1
dst_img_name = str(pid).zfill(6) + ‘_c’ + str(camid + 1) + ‘SenseReID’ + fname + ‘.jpg’
shutil.copy(os.path.join(src_path, img_name), os.path.join(dst_dir, dst_img_name))
if name == ‘main’:
src_cam_a = r’D:\data\SenseReID\test_gallery’
src_cam_b = r’D:\data\SenseReID\test_probe’
dst_dir = r’E:\reID\market1501\bounding_box_train’
extract_SenseReID(src_cam_a, dst_dir, <span class="hljs-string">'gallery'</span>)
extract_SenseReID(src_cam_b, dst_dir, <span class="hljs-string">'probe'</span>)</code></pre>
转换后的SenseReID数据集一共有4428张图片, ID从007944到009661。
import re
import os
import shutil
- 1
- 2
- 3
def extract_prid(src_path, dst_dir, prevID, camid=1):
pattern = re.compile(r’person_([\d]+)’)
pid_container = set()
sub_dir_names = os.listdir(src_path) <span class="hljs-comment"># ['person_0001', 'person_0002',...</span>
<span class="hljs-keyword">for</span> sub_dir_name <span class="hljs-keyword">in</span> sub_dir_names: <span class="hljs-comment"># 'person_0001'</span>
img_names_all = os.listdir(os.path.join(src_path, sub_dir_name))
<span class="hljs-comment"># 这里我就只取首尾两张,防止重复太多了</span>
img_names = [img_names_all[<span class="hljs-number">0</span>], img_names_all[<span class="hljs-number">-1</span>]]
<span class="hljs-keyword">for</span> img_name <span class="hljs-keyword">in</span> img_names: <span class="hljs-comment"># '0001.png'</span>
<span class="hljs-keyword">if</span> <span class="hljs-string">'.png'</span> <span class="hljs-keyword">not</span> <span class="hljs-keyword">in</span> img_name:
<span class="hljs-keyword">continue</span>
print(img_name)
<span class="hljs-comment"># parent.split('\\')[-1] : person_0001</span>
pid = int(pattern.search(sub_dir_name).group(<span class="hljs-number">1</span>))
pid += prevID
dst_img_name = str(pid).zfill(<span class="hljs-number">6</span>) + <span class="hljs-string">'_c'</span> + str(camid) + <span class="hljs-string">'_prid'</span> + img_name.replace(<span class="hljs-string">'.png'</span>, <span class="hljs-string">'.jpg'</span>)
shutil.copy(os.path.join(src_path, sub_dir_name, img_name), os.path.join(dst_dir, dst_img_name))
if name == ‘main’:
src_cam_a = r’D:\data\prid2011\multi_shot\cam_a’
src_cam_b = r’D:\data\prid2011\multi_shot\cam_b’
dst_dir = r’E:\reID\market1501\bounding_box_train’
extract_prid(src_cam_a, dst_dir, <span class="hljs-number">9661</span>)
extract_prid(src_cam_b, dst_dir, <span class="hljs-number">10046</span>)
转换后的prid数据集一共有2268张图片, ID从009662到010795。
import re
import os
import shutil
- 1
- 2
- 3
def extract_ilids(src_path, dst_dir, prevID, camid):
pattern = re.compile(r’person([\d]+)’)
pid_container = set()
sub_dir_names = os.listdir(src_path)
<span class="hljs-keyword">for</span> sub_dir_name <span class="hljs-keyword">in</span> sub_dir_names:
img_names = os.listdir(os.path.join(src_path, sub_dir_name))
<span class="hljs-keyword">for</span> img_name <span class="hljs-keyword">in</span> img_names:
<span class="hljs-keyword">if</span> <span class="hljs-string">'.png'</span> <span class="hljs-keyword">not</span> <span class="hljs-keyword">in</span> img_name:
<span class="hljs-keyword">continue</span>
print(img_name)
pid = int(pattern.search(sub_dir_name).group(<span class="hljs-number">1</span>))
pid += prevID
dst_img_name = str(pid).zfill(<span class="hljs-number">6</span>) + <span class="hljs-string">'_c'</span> + str(camid) + <span class="hljs-string">'_ilids'</span> + <span class="hljs-string">'.jpg'</span>
shutil.copy(os.path.join(src_path, sub_dir_name, img_name), os.path.join(dst_dir, dst_img_name))
if name == ‘main’:
src_cam_a = r’D:\data\ilids\i-LIDS-VID\images\cam1’
src_cam_b = r’D:\data\ilids\i-LIDS-VID\images\cam2’
dst_dir = r’E:\reID\market1501\bounding_box_train’
extract_ilids(src_cam_a, dst_dir, <span class="hljs-number">10795</span>, <span class="hljs-number">1</span>)
extract_ilids(src_cam_b, dst_dir, <span class="hljs-number">10795</span>, <span class="hljs-number">2</span>)
转换后的ilids数据集一共有600张图片, ID从010796到011114。
import re
import os
import shutil
- 1
- 2
- 3
def extract_grid(src_path, dst_dir, camid=1):
img_names = os.listdir(src_path)
pattern = re.compile(r’([\d]+)_’)
pid_container = set()
for img_name in img_names:
if ‘.jpeg’ not in img_name:
continue
print(img_name)
pid = int(pattern.search(img_name).group(1))
if pid == 0:
continue
pid += 11114
dst_img_name = str(pid).zfill(6) + ‘_c’ + str(camid) + ‘_grid’ + ‘.jpg’
shutil.copy(os.path.join(src_path, img_name), os.path.join(dst_dir, dst_img_name))
if name == ‘main’:
src_cam_a = r’D:\data\grid\probe’
src_cam_b = r’D:\data\grid\gallery’
dst_dir = r’E:\reID\market1501\bounding_box_train’
extract_grid(src_cam_a, dst_dir, camid=<span class="hljs-number">1</span>)
extract_grid(src_cam_b, dst_dir, camid=<span class="hljs-number">2</span>)
转换后的grid数据集一共有500张图片, ID从011115到011364
最终的数据集统计结果如下图所示,一共有将近十八万张图片和11103个不同ID的行人:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。