multi_languages_en.md 8.0 KB
Newer Older
T
tink2123 已提交
1 2 3 4
# Multi-language model

**Recent Update**

A
andyjpaddle 已提交
5
- 2022.5.8 update `PP-OCRv3` detection and recognition
T
tink2123 已提交
6 7 8 9 10 11 12 13 14 15 16
- 2021.4.9 supports the detection and recognition of 80 languages
- 2021.4.9 supports **lightweight high-precision** English model detection and recognition

PaddleOCR aims to create a rich, leading, and practical OCR tool library, which not only provides
Chinese and English models in general scenarios, but also provides models specifically trained
in English scenarios. And multilingual models covering [80 languages](#language_abbreviations).

Among them, the English model supports the detection and recognition of uppercase and lowercase
letters and common punctuation, and the recognition of space characters is optimized:

<div align="center">
T
tink2123 已提交
17
    <img src="../imgs_results/multi_lang/img_12.jpg" width="900" height="300">
T
tink2123 已提交
18 19 20 21 22 23 24
</div>

The multilingual models cover Latin, Arabic, Traditional Chinese, Korean, Japanese, etc.:

<div align="center">
    <img src="../imgs_results/multi_lang/japan_2.jpg" width="600" height="300">
    <img src="../imgs_results/multi_lang/french_0.jpg" width="300" height="300">
T
tink2123 已提交
25 26
    <img src="../imgs_results/multi_lang/korean_0.jpg" width="500" height="300">
    <img src="../imgs_results/multi_lang/arabic_0.jpg" width="300" height="300">
T
tink2123 已提交
27 28 29 30 31
</div>

This document will briefly introduce how to use the multilingual model.

- [1 Installation](#Install)
fanruinet's avatar
fanruinet 已提交
32 33
    - [1.1 Paddle installation](#paddleinstallation)
    - [1.2 PaddleOCR package installation](#paddleocr_package_install)
T
tink2123 已提交
34 35 36

- [2 Quick Use](#Quick_Use)
    - [2.1 Command line operation](#Command_line_operation)
fanruinet's avatar
fanruinet 已提交
37
    - [2.2 Run with Python script](#python_Script_running)
T
tink2123 已提交
38
- [3 Custom Training](#Custom_Training)
T
tink2123 已提交
39
- [4 Inference and Deployment](#inference)
T
tink2123 已提交
40
- [4 Supported languages and abbreviations](#language_abbreviations)
T
tink2123 已提交
41 42 43 44 45

<a name="Install"></a>
## 1 Installation

<a name="paddle_install"></a>
fanruinet's avatar
fanruinet 已提交
46
### 1.1 Paddle installation
T
tink2123 已提交
47 48 49 50 51
```
# cpu
pip install paddlepaddle

# gpu
T
tink2123 已提交
52
pip install paddlepaddle-gpu
T
tink2123 已提交
53 54 55
```

<a name="paddleocr_package_install"></a>
fanruinet's avatar
fanruinet 已提交
56
### 1.2 PaddleOCR package installation
T
tink2123 已提交
57 58 59 60


pip install
```
T
tink2123 已提交
61
pip install "paddleocr>=2.0.6" # 2.0.6 version is recommended
T
tink2123 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
```
Build and install locally
```
python3 setup.py bdist_wheel
pip3 install dist/paddleocr-x.x.x-py3-none-any.whl # x.x.x is the version number of paddleocr
```

<a name="Quick_use"></a>
## 2 Quick use

<a name="Command_line_operation"></a>
### 2.1 Command line operation

View help information

```
paddleocr -h
```

* Whole image prediction (detection + recognition)

fanruinet's avatar
fanruinet 已提交
83 84
PaddleOCR currently supports 80 languages, which can be specified by the --lang parameter.
The supported languages are listed in the [table](#language_abbreviations).
T
tink2123 已提交
85 86

``` bash
T
tink2123 已提交
87
paddleocr --image_dir doc/imgs_en/254.jpg --lang=en
T
tink2123 已提交
88
```
T
tink2123 已提交
89 90 91 92
<div align="center">
    <img src="../imgs_en/254.jpg" width="300" height="600">
    <img src="../imgs_results/multi_lang/img_02.jpg" width="600" height="600">
</div>
T
tink2123 已提交
93

fanruinet's avatar
fanruinet 已提交
94
The result is a list. Each item contains a text box, text and recognition confidence
T
tink2123 已提交
95
```text
T
tink2123 已提交
96 97 98 99 100 101 102
[('PHO CAPITAL', 0.95723116), [[66.0, 50.0], [327.0, 44.0], [327.0, 76.0], [67.0, 82.0]]]
[('107 State Street', 0.96311164), [[72.0, 90.0], [451.0, 84.0], [452.0, 116.0], [73.0, 121.0]]]
[('Montpelier Vermont', 0.97389287), [[69.0, 132.0], [501.0, 126.0], [501.0, 158.0], [70.0, 164.0]]]
[('8022256183', 0.99810505), [[71.0, 175.0], [363.0, 170.0], [364.0, 202.0], [72.0, 207.0]]]
[('REG 07-24-201706:59 PM', 0.93537045), [[73.0, 299.0], [653.0, 281.0], [654.0, 318.0], [74.0, 336.0]]]
[('045555', 0.99346405), [[509.0, 331.0], [651.0, 325.0], [652.0, 356.0], [511.0, 362.0]]]
[('CT1', 0.9988654), [[535.0, 367.0], [654.0, 367.0], [654.0, 406.0], [535.0, 406.0]]]
T
tink2123 已提交
103 104 105
......
```

T
tink2123 已提交
106
* Recognition
T
tink2123 已提交
107 108

```bash
T
tink2123 已提交
109
paddleocr --image_dir doc/imgs_words_en/word_308.png --det false --lang=en
T
tink2123 已提交
110 111
```

T
tink2123 已提交
112
![](https://raw.githubusercontent.com/PaddlePaddle/PaddleOCR/release/2.1/doc/imgs_words_en/word_308.png)
T
tink2123 已提交
113

fanruinet's avatar
fanruinet 已提交
114
The result is a 2-tuple, which contains the recognition result and recognition confidence
T
tink2123 已提交
115 116

```text
T
tink2123 已提交
117
(0.99879867, 'LITTLE')
T
tink2123 已提交
118 119
```

T
tink2123 已提交
120
* Detection
T
tink2123 已提交
121 122 123 124 125

```
paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --rec false
```

fanruinet's avatar
fanruinet 已提交
126
The result is a list. Each item represents the coordinates of a text box.
T
tink2123 已提交
127 128 129 130 131 132 133 134 135

```
[[26.0, 457.0], [137.0, 457.0], [137.0, 477.0], [26.0, 477.0]]
[[25.0, 425.0], [372.0, 425.0], [372.0, 448.0], [25.0, 448.0]]
[[128.0, 397.0], [273.0, 397.0], [273.0, 414.0], [128.0, 414.0]]
......
```

<a name="python_script_running"></a>
fanruinet's avatar
fanruinet 已提交
136
### 2.2 Run with Python script
T
tink2123 已提交
137

fanruinet's avatar
fanruinet 已提交
138
PPOCR is able to run with Python scripts for easy integration with your own code:
T
tink2123 已提交
139 140 141 142 143 144 145 146 147 148

* Whole image prediction (detection + recognition)

```
from paddleocr import PaddleOCR, draw_ocr

# Also switch the language by modifying the lang parameter
ocr = PaddleOCR(lang="korean") # The model file will be downloaded automatically when executed for the first time
img_path ='doc/imgs/korean_1.jpg'
result = ocr.ocr(img_path)
T
tink2123 已提交
149 150 151
# Recognition and detection can be performed separately through parameter control
# result = ocr.ocr(img_path, det=False)  Only perform recognition
# result = ocr.ocr(img_path, rec=False)  Only perform detection
T
tink2123 已提交
152 153 154 155 156 157 158 159 160 161
# Print detection frame and recognition result
for line in result:
    print(line)

# Visualization
from PIL import Image
image = Image.open(img_path).convert('RGB')
boxes = [line[0] for line in result]
txts = [line[1][0] for line in result]
scores = [line[1][1] for line in result]
T
tink2123 已提交
162
im_show = draw_ocr(image, boxes, txts, scores, font_path='/path/to/PaddleOCR/doc/fonts/korean.ttf')
T
tink2123 已提交
163 164 165 166 167
im_show = Image.fromarray(im_show)
im_show.save('result.jpg')
```

Visualization of results:
T
tink2123 已提交
168
![](https://raw.githubusercontent.com/PaddlePaddle/PaddleOCR/release/2.1/doc/imgs_results/korean.jpg)
T
tink2123 已提交
169 170


fanruinet's avatar
fanruinet 已提交
171
PPOCR also supports direction classification. For more detailed usage, please refer to: [whl package instructions](whl_en.md).
T
tink2123 已提交
172 173 174 175

<a name="Custom_training"></a>
## 3 Custom training

fanruinet's avatar
fanruinet 已提交
176
PPOCR supports using your own data for custom training or fine-tune, where the recognition model can refer to [French configuration file](../../configs/rec/multi_language/rec_french_lite_train.yml)
T
tink2123 已提交
177 178
Modify the training data path, dictionary and other parameters.

T
tink2123 已提交
179 180
For specific data preparation and training process, please refer to: [Text Detection](../doc_en/detection_en.md), [Text Recognition](../doc_en/recognition_en.md), more functions such as predictive deployment,
For functions such as data annotation, you can read the complete [Document Tutorial](../../README.md).
T
tink2123 已提交
181

T
tink2123 已提交
182 183 184 185 186

<a name="inference"></a>
## 4 Inference and Deployment

In addition to installing the whl package for quick forecasting,
fanruinet's avatar
fanruinet 已提交
187
PPOCR also provides a variety of forecasting deployment methods.
T
tink2123 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200 201
If necessary, you can read related documents:

- [Python Inference](./inference_en.md)
- [C++ Inference](../../deploy/cpp_infer/readme_en.md)
- [Serving](../../deploy/hubserving/readme_en.md)
- [Mobile](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/deploy/lite/readme_en.md)
- [Benchmark](./benchmark_en.md)


<a name="language_abbreviations"></a>
## 5 Support languages and abbreviations

| Language  | Abbreviation | | Language  | Abbreviation |
| ---  | --- | --- | ---  | --- |
qq_25193841's avatar
qq_25193841 已提交
202 203 204 205 206 207 208
|Chinese & English|ch| |Arabic|ar|
|English|en| |Hindi|hi|
|French|fr| |Uyghur|ug|
|German|german| |Persian|fa|
|Japan|japan| |Urdu|ur|
|Korean|korean| | Serbian(latin) |rs_latin|
|Chinese Traditional |chinese_cht| |Occitan |oc|
T
tink2123 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
| Italian |it| |Marathi|mr|
|Spanish |es| |Nepali|ne|
| Portuguese|pt| |Serbian(cyrillic)|rs_cyrillic|
|Russia|ru||Bulgarian |bg|
|Ukranian|uk| |Estonian |et|
|Belarusian|be| |Irish |ga|
|Telugu |te| |Croatian |hr|
|Saudi Arabia|sa| |Hungarian |hu|
|Tamil |ta| |Indonesian|id|
|Afrikaans |af| |Icelandic|is|
|Azerbaijani  |az||Kurdish|ku|
|Bosnian|bs| |Lithuanian |lt|
|Czech|cs| |Latvian |lv|
|Welsh |cy| |Maori|mi|
|Danish|da| |Malay|ms|
|Maltese |mt| |Adyghe |ady|
|Dutch |nl| |Kabardian |kbd|
|Norwegian |no| |Avar |ava|
|Polish |pl| |Dargwa |dar|
|Romanian |ro| |Ingush |inh|
|Slovak |sk| |Lak |lbe|
|Slovenian |sl| |Lezghian |lez|
|Albanian |sq| |Tabassaran |tab|
|Swedish |sv| |Bihari |bh|
|Swahili |sw| |Maithili |mai|
|Tagalog |tl| |Angika |ang|
|Turkish |tr| |Bhojpuri |bho|
|Uzbek |uz| |Magahi |mah|
|Vietnamese |vi| |Nagpur |sck|
|Mongolian |mn| |Newari |new|
|Abaza |abq| |Goan Konkani|gom|