- Mar. 4, 2020: YFCC100M, the source dataset of Fashion Culture DataBase currently may have an issue on downloading. Please check updates of this page.
- Mar. 26, 2020: Pre-train weights are published
- Mar. 4, 2020: Repository is published
- Nov. 8, 2019: Repository creation
FCDB has been constructed based on the following papers.
The repository provides codes and bounding boxes (bboxes) in order to construct FCDB which is based on YFCC100M dataset. Please note that we are NOT serving original images and meta information included in YFCC100M dataset. Therefore, please download YFCC100M images yourself by following the Yahoo's instruction. We are sharing only person bboxes which are corresponding to YFCC100M images. The detailed sharing files are shown below.
- Image identification number (Image ID) and bboxes on FCDB
- 3 types of dataset representation
- Images divided into 16 directories
- Pascal VOC format (for person detection)
- MS COCO format (for person detection)
Our FCDB is also applied as a large-scale pre-training dataset for person detection. Please see also the following paper.
If you use the dataset or codes, please cite the following:
@inproceedings{KataokaCVPRW2019_FCDB,
author={Hirokatsu Kataoka and Kaori Abe and Munetaka Minoguchi and Akio Nakamura and Yutaka Satoh},
title={Ten-million-order Human Database for World-wide Fashion Culture Analysis},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition Workshop (CVPRW)},
year={2019},
}
@inproceedings{Minoguchi_WSPD,
author={Munetaka Minoguchi and Ken Okayama and Yutaka Satoh and Hirokatsu Kataoka},
title={Weakly Supervised Dataset Collection for Robust Person Detection},
booktitle={arXiv pre-print:2003.12263},
year={2020},
}
- python 3
- numpy, xml, json, argparse
- 400 GB vacant space in your computer
A user must download YFCC100M in advance, due to FCDB has constructed based on YFCC100M. The rights including copyright and license are belonged to YFCC100M. Please refer to the description of YFCC100M YFCC100M.
The required data can be available on yfcc100m_dataset
on Amazon s3.
-
Image ID and bboxes
Please fill out the form to obtain a file which contains image ID and bboxes. After our confirmation, we will send an email to get the file. -
Pre-train weights
We provide the weights of M2Det and SSD which are trained on FCDB. The configuration of each detector follows the default settings of each original repository. Download link is here.
We provide three types of dataset representation. Please see the following instruction what you want. Please properly set a directory path in your environment.
FCDB is divided into 16 directories. Each directory corresponds to each city.
python ImageFolder.py --yfcc='./yfcc100m_dataset' \
--id_json='./image_id_list.json' \
--save_dir='./FCDBv2'
FCDB is transformed to Pascal VOC format which is used in object detection. The image ID and bbox are paired.
python VocFormat.py --yfcc='./yfcc100m_dataset' \
--id_json='./image_id_list.json' \
--save_dir='./FCDBv2'
FCDB is transformed to MS COCO format which is used in object detection. The image ID and bbox are paired.
python CocoFormat.py --yfcc='./yfcc100m_dataset' \
--id_json='./image_id_list.json' \
--save_dir='./FCDBv2'