Skip to content

Commit 820ad78

Browse files
committed
update readme
1 parent ae1d754 commit 820ad78

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

models/text_recognition_crnn/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,32 @@
22

33
An End-to-End Trainable Neural Network for Image-based Sequence Recognition and Its Application to Scene Text Recognition
44

5+
Results of accuracy evaluation by ICDAR2003:
6+
7+
| Models | Accuracy |
8+
| ------ | -------------- |
9+
| CRNN_EN | 0.8166 |
10+
| CRNN_EN_FP16 | 0.8201 |
11+
| CRNN_CH | 0.7128 |
12+
| CRNN_CH_FP16 | 0.7863 |
13+
14+
Results of accuracy evaluation IIIT5k-Words:
15+
16+
| Models | Accuracy |
17+
| ------ | -------------- |
18+
| CRNN_EN | 0.7433 |
19+
| CRNN_EN_FP16 | 0.7493 |
20+
| CRNN_CH | 0.8090 |
21+
| CRNN_CH_FP16 | 0.8093 |
22+
\*: 'FP16' stands for 'model quantized into FP16'.
23+
524
Note:
625
- Model source:
726
- `text_recognition_CRNN_EN_2021sep.onnx`: https://docs.opencv.org/4.5.2/d9/d1e/tutorial_dnn_OCR.html (CRNN_VGG_BiLSTM_CTC.onnx)
27+
- `text_recognition_CRNN_CH_2021sep.onnx`: https://docs.opencv.org/4.x/d4/d43/tutorial_dnn_text_spotting.html (crnn_cs.onnx)
828
- `text_recognition_CRNN_CN_2021nov.onnx`: https://docs.opencv.org/4.5.2/d4/d43/tutorial_dnn_text_spotting.html (crnn_cs_CN.onnx)
929
- `text_recognition_CRNN_EN_2021sep.onnx` can detect digits (0\~9) and letters (return lowercase letters a\~z) (view `charset_36_EN.txt` for details).
30+
- `text_recognition_CRNN_CH_2021sep.onnx` can detect digits (0\~9), upper/lower-case letters (a\~z and A\~Z), and some special characters (view `charset_94_CH.txt` for details).
1031
- `text_recognition_CRNN_CN_2021nov.onnx` can detect digits (0\~9), upper/lower-case letters (a\~z and A\~Z), some Chinese characters and some special characters (view `charset_3944_CN.txt` for details).
1132
- For details on training this model series, please visit https://github.com/zihaomu/deep-text-recognition-benchmark.
1233

@@ -16,6 +37,7 @@ Note:
1637
- This demo uses [text_detection_db](../text_detection_db) as text detector.
1738
- Selected model must match with the charset:
1839
- Try `text_recognition_CRNN_EN_2021sep.onnx` with `charset_36_EN.txt`.
40+
- Try `text_recognition_CRNN_CH_2021sep.onnx` with `charset_94_CH.txt`
1941
- Try `text_recognition_CRNN_CN_2021sep.onnx` with `charset_3944_CN.txt`.
2042

2143
Run the demo detecting English:

0 commit comments

Comments
 (0)