Merge branch 'master' of github.com:L1aoXingyu/fast-reid

pull/525/head
liaoxingyu 2021-06-17 16:07:17 +08:00
commit ac6256887c
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
Gitter: [fast-reid/community](https://gitter.im/fast-reid/community?utm_source=share-link&utm_medium=link&utm_campaign=share-link)
FastReID is a research platform that implements state-of-the-art re-identification algorithms. It is a groud-up rewrite of the previous version, [reid strong baseline](https://github.com/michuanhaohao/reid-strong-baseline).
FastReID is a research platform that implements state-of-the-art re-identification algorithms. It is a ground-up rewrite of the previous version, [reid strong baseline](https://github.com/michuanhaohao/reid-strong-baseline).
## What's New

View File

@ -63,7 +63,7 @@ class VeRiWild(ImageDataset):
for idx, line in enumerate(img_list_lines):
line = line.strip()
vid = int(line.split('/')[0])
imgid = line.split('/')[1]
imgid = line.split('/')[1].split('.')[0]
if is_train:
vid = self.dataset_name + '_' + str(vid)
dataset.append((self.imgid2imgpath[imgid], vid, self.imgid2camid[imgid]))