Skip to content

Commit 7536614

Browse files
committed
update the readme
1 parent 28f3730 commit 7536614

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ venv.bak/
233233

234234
# Project specific
235235
logs
236-
*.png
236+
# *.png
237237
*.jpg
238238
*.jpeg
239239
viz

README.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22

33
This repository implements the ASTER in pytorch. Origin software could be found in [here](https://github.com/bgshih/aster).
44

5+
ASTER is an accurate scene text recognizer with flexible rectification mechanism. The research paper can be found [here](https://ieeexplore.ieee.org/abstract/document/8395027/).
6+
7+
![ASTER Overview](overview.png)
8+
59
## Train
10+
611
```
712
bash scripts/stn_att_rec.sh
813
```
914

1015
## Test
16+
1117
```
1218
bash scripts/main_test_all.sh
1319
```
@@ -18,7 +24,6 @@ bash scripts/main_test_all.sh
1824
|:-------------:|:------:|:----:|:-----:|:-----:|:-----:|:-----:|
1925
| ASTER (L2R) | 92.67 | - | 93.72 | 90.74 | 78.76 | 76.39 |
2026
| ASTER.Pytorch | 93.2 | 89.2 | 92.2 | 91 | 81.2 | 81.9 |
21-
|
2227

2328
At present, the bidirectional attention decoder proposed in ASTER is not included in my implementation.
2429

@@ -29,5 +34,38 @@ You can use the codes to bootstrap for your next text recognition research proje
2934

3035
We give an example to construct your own datasets. Details please refer to `tools/create_svtp_lmdb.py`.
3136

37+
## Citation
38+
39+
If you find this project helpful for your research, please cite the following papers:
40+
41+
```
42+
@article{bshi2018aster,
43+
author = {Baoguang Shi and
44+
Mingkun Yang and
45+
Xinggang Wang and
46+
Pengyuan Lyu and
47+
Cong Yao and
48+
Xiang Bai},
49+
title = {ASTER: An Attentional Scene Text Recognizer with Flexible Rectification},
50+
journal = {IEEE Transactions on Pattern Analysis and Machine Intelligence},
51+
volume = {},
52+
number = {},
53+
pages = {1-1},
54+
year = {2018},
55+
}
56+
57+
@inproceedings{ShiWLYB16,
58+
author = {Baoguang Shi and
59+
Xinggang Wang and
60+
Pengyuan Lyu and
61+
Cong Yao and
62+
Xiang Bai},
63+
title = {Robust Scene Text Recognition with Automatic Rectification},
64+
booktitle = {2016 {IEEE} Conference on Computer Vision and Pattern Recognition,
65+
{CVPR} 2016, Las Vegas, NV, USA, June 27-30, 2016},
66+
pages = {4168--4176},
67+
year = {2016}
68+
}
69+
```
3270

3371
IMPORTANT NOTICE: Although this software is licensed under MIT, our intention is to make it free for academic research purposes. If you are going to use it in a product, we suggest you [contact us]([email protected]) regarding possible patent issues.

overview.png

52 KB
Loading

0 commit comments

Comments
 (0)