99 lines
3.8 KiB
Python
99 lines
3.8 KiB
Python
from __future__ import print_function, absolute_import
|
|
|
|
import os
|
|
import glob
|
|
import re
|
|
import sys
|
|
import urllib
|
|
import tarfile
|
|
import zipfile
|
|
import os.path as osp
|
|
from scipy.io import loadmat
|
|
import numpy as np
|
|
import h5py
|
|
from scipy.misc import imsave
|
|
|
|
|
|
class DukeMTMCreID(object):
|
|
"""
|
|
DukeMTMC-reID
|
|
|
|
Reference:
|
|
1. Ristani et al. Performance Measures and a Data Set for Multi-Target, Multi-Camera Tracking. ECCVW 2016.
|
|
2. Zheng et al. Unlabeled Samples Generated by GAN Improve the Person Re-identification Baseline in vitro. ICCV 2017.
|
|
|
|
URL: https://github.com/layumi/DukeMTMC-reID_evaluation
|
|
|
|
Dataset statistics:
|
|
# identities: 1404 (train + query)
|
|
# images:16522 (train) + 2228 (query) + 17661 (gallery)
|
|
# cameras: 8
|
|
"""
|
|
dataset_dir = 'dukemtmc-reid'
|
|
|
|
def __init__(self, root='data', **kwargs):
|
|
self.dataset_dir = osp.join(root, self.dataset_dir)
|
|
self.train_dir = osp.join(self.dataset_dir, 'DukeMTMC-reID/bounding_box_train')
|
|
self.query_dir = osp.join(self.dataset_dir, 'DukeMTMC-reID/query')
|
|
self.gallery_dir = osp.join(self.dataset_dir, 'DukeMTMC-reID/bounding_box_test')
|
|
|
|
self._check_before_run()
|
|
|
|
train, num_train_pids, num_train_imgs = self._process_dir(self.train_dir, relabel=True)
|
|
query, num_query_pids, num_query_imgs = self._process_dir(self.query_dir, relabel=False)
|
|
gallery, num_gallery_pids, num_gallery_imgs = self._process_dir(self.gallery_dir, relabel=False)
|
|
num_total_pids = num_train_pids + num_query_pids
|
|
num_total_imgs = num_train_imgs + num_query_imgs + num_gallery_imgs
|
|
|
|
print("=> DukeMTMC-reID loaded")
|
|
print("Dataset statistics:")
|
|
print(" ------------------------------")
|
|
print(" subset | # ids | # images")
|
|
print(" ------------------------------")
|
|
print(" train | {:5d} | {:8d}".format(num_train_pids, num_train_imgs))
|
|
print(" query | {:5d} | {:8d}".format(num_query_pids, num_query_imgs))
|
|
print(" gallery | {:5d} | {:8d}".format(num_gallery_pids, num_gallery_imgs))
|
|
print(" ------------------------------")
|
|
print(" total | {:5d} | {:8d}".format(num_total_pids, num_total_imgs))
|
|
print(" ------------------------------")
|
|
|
|
self.train = train
|
|
self.query = query
|
|
self.gallery = gallery
|
|
|
|
self.num_train_pids = num_train_pids
|
|
self.num_query_pids = num_query_pids
|
|
self.num_gallery_pids = num_gallery_pids
|
|
|
|
def _check_before_run(self):
|
|
"""Check if all files are available before going deeper"""
|
|
if not osp.exists(self.dataset_dir):
|
|
raise RuntimeError("'{}' is not available".format(self.dataset_dir))
|
|
if not osp.exists(self.train_dir):
|
|
raise RuntimeError("'{}' is not available".format(self.train_dir))
|
|
if not osp.exists(self.query_dir):
|
|
raise RuntimeError("'{}' is not available".format(self.query_dir))
|
|
if not osp.exists(self.gallery_dir):
|
|
raise RuntimeError("'{}' is not available".format(self.gallery_dir))
|
|
|
|
def _process_dir(self, dir_path, relabel=False):
|
|
img_paths = glob.glob(osp.join(dir_path, '*.jpg'))
|
|
pattern = re.compile(r'([-\d]+)_c(\d)')
|
|
|
|
pid_container = set()
|
|
for img_path in img_paths:
|
|
pid, _ = map(int, pattern.search(img_path).groups())
|
|
pid_container.add(pid)
|
|
pid2label = {pid:label for label, pid in enumerate(pid_container)}
|
|
|
|
dataset = []
|
|
for img_path in img_paths:
|
|
pid, camid = map(int, pattern.search(img_path).groups())
|
|
assert 1 <= camid <= 8
|
|
camid -= 1 # index starts from 0
|
|
if relabel: pid = pid2label[pid]
|
|
dataset.append((img_path, pid, camid))
|
|
|
|
num_pids = len(pid_container)
|
|
num_imgs = len(dataset)
|
|
return dataset, num_pids, num_imgs |