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

Commit 2f1cd74

Browse files
committed
update paper references
1 parent 3f766d0 commit 2f1cd74

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![CI](https://github.com/fcakyon/midv500/workflows/CI/badge.svg)
44

55
## Download and convert MIDV-500 datasets into COCO instance segmentation format
6-
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.
6+
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.
77

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

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

1515
You can find more detail on papers:
1616

17-
[MIDV-500: A Dataset for Identity Documents Analysis and Recognition on Mobile Devices in Video Stream](https://arxiv.org/abs/1807.05786)
17+
[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)
1818

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

2121

2222
## Getting started

midv500/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import
22

3-
__version__ = "0.2.0"
3+
__version__ = "0.2.1"
44

55
from midv500.convert_dataset import convert as convert_to_coco
66

midv500/download_dataset.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ def download_dataset(download_dir: str, dataset_name: str = "midv500"):
114114
"""
115115
This script downloads the MIDV-500 dataset with extra files and unzips the folders.
116116
dataset_name: str
117-
"midv500": https://arxiv.org/abs/1807.05786
118-
"midv2019": https://arxiv.org/abs/1910.04009
117+
"midv500": https://doi.org/10.18287/2412-6179-2019-43-5-818-824
118+
"midv2019": https://doi.org/10.1117/12.2558438
119119
"all": midv500 + midv2019
120120
"""
121121

0 commit comments

Comments
 (0)