Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
update paper references
Browse files Browse the repository at this point in the history
  • Loading branch information
fcakyon committed Aug 19, 2020
1 parent 3f766d0 commit 2f1cd74
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![CI](https://github.com/fcakyon/midv500/workflows/CI/badge.svg)

## Download and convert MIDV-500 datasets into COCO instance segmentation format
Automatically download/unzip [MIDV-500](https://arxiv.org/abs/1807.05786) and [MIDV-2019](https://arxiv.org/abs/1910.04009) datasets and convert the annotations into COCO instance segmentation format.
Automatically download/unzip [MIDV-500](https://doi.org/10.18287/2412-6179-2019-43-5-818-824) and [MIDV-2019](https://doi.org/10.1117/12.2558438) datasets and convert the annotations into COCO instance segmentation format.

Then, dataset can be directly used in the training of Yolact, Detectron type of models.

Expand All @@ -14,9 +14,9 @@ MIDV-500 consists of 500 video clips for 50 different identity document types in

You can find more detail on papers:

[MIDV-500: A Dataset for Identity Documents Analysis and Recognition on Mobile Devices in Video Stream](https://arxiv.org/abs/1807.05786)
[MIDV-500: A Dataset for Identity Documents Analysis and Recognition on Mobile Devices in Video Stream](https://doi.org/10.18287/2412-6179-2019-43-5-818-824)

[MIDV-2019: Challenges of the modern mobile-based document OCR](https://arxiv.org/abs/1910.04009)
[MIDV-2019: Challenges of the modern mobile-based document OCR](https://doi.org/10.1117/12.2558438)


## Getting started
Expand Down
2 changes: 1 addition & 1 deletion midv500/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import absolute_import

__version__ = "0.2.0"
__version__ = "0.2.1"

from midv500.convert_dataset import convert as convert_to_coco

Expand Down
4 changes: 2 additions & 2 deletions midv500/download_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ def download_dataset(download_dir: str, dataset_name: str = "midv500"):
"""
This script downloads the MIDV-500 dataset with extra files and unzips the folders.
dataset_name: str
"midv500": https://arxiv.org/abs/1807.05786
"midv2019": https://arxiv.org/abs/1910.04009
"midv500": https://doi.org/10.18287/2412-6179-2019-43-5-818-824
"midv2019": https://doi.org/10.1117/12.2558438
"all": midv500 + midv2019
"""

Expand Down

0 comments on commit 2f1cd74

Please sign in to comment.