Flask application for exploring and managing image datasets. Currently handles only COCO-format annotation files.
- Install Visual C++ 2015 build tools from here.
- Clone this repository locally:
git clone https://github.com/kristoph4822/image-datasets-explorer.git
- Install required packages (preferably into a virtualenv):
cd image-datasets-explorer
pip install -r requirements.txt
- Now you can run application:
python run.py
You can easily add COCO datasets (2014 & 2017 train/val) to this application:
- Download datasets annotations from COCO website: https://cocodataset.org/#download
- Put instances and captions JSON files in appropriate folders in
/app/api/annotations/...
- Add datasets names to
DATASETS
list variable inconfig.py
file