README.md 16.5 KB
Newer Older
grasswolfs's avatar
grasswolfs committed
1
2
English | [简体中文](README_ch.md)

Evezerest's avatar
Evezerest committed
3
# PPOCRLabelv2
Leif's avatar
Leif committed
4

Evezerest's avatar
Evezerest committed
5
PPOCRLabelv2 is a semi-automatic graphic annotation tool suitable for OCR field, with built-in PP-OCR model to automatically detect and re-recognize data. It is written in Python3 and PyQT5, supporting rectangular box, table, irregular text and key information annotation modes. Annotations can be directly used for the training of PP-OCR detection and recognition models.
Leif's avatar
Leif committed
6

Evezerest's avatar
Evezerest committed
7
| regular text annotation                              | table annotation                                       |
Evezerest's avatar
Evezerest committed
8
| :-------------------------------------------------: | :--------------------------------------------: |
Evezerest's avatar
Evezerest committed
9
10
11
| <img src="./data/gif/steps_en.gif" width="80%"/>    | <img src="./data/gif/table.gif" width="100%"/> |
| **irregular text annotation**                        | **key information annotation**                               |
| <img src="./data/gif/multi-point.gif" width="80%"/> | <img src="./data/gif/kie.gif" width="300%"/>   |
Leif's avatar
Leif committed
12

13
14
### Recent Update

Leif's avatar
Leif committed
15
16
- 2022.05: Add table annotations, follow `2.2 Table Annotations` for more information (by [whjdark](https://github.com/peterh0323); [Evezerest](https://github.com/Evezerest))
- 2022.02:(by [PeterH0323](https://github.com/peterh0323)
HinGwenWoong's avatar
HinGwenWoong committed
17
  - Add KIE Mode by using `--kie`, for [detection + identification + keyword extraction] labeling.
HinGwenWoong's avatar
HinGwenWoong committed
18
  - Improve user experience: prompt for the number of files and labels, optimize interaction, and fix bugs such as only use CPU when inference
HinGwenWoong's avatar
HinGwenWoong committed
19
  - New functions: Support using `C` or `X` to rotate box.
20
21
22
23
- 2021.11.17:
  - Support install and start PPOCRLabel through the whl package (by [d2623587501](https://github.com/d2623587501))
  - Dataset segmentation: Divide the annotation file into training, verification and testing parts (refer to section 3.5 below, by [MrCuiHao](https://github.com/MrCuiHao))
- 2021.8.11:
Leif's avatar
Leif committed
24
25
  - New functions: Open the dataset folder, image rotation (Note: Please delete the label box before rotating the image) (by [Wei-JL](https://github.com/Wei-JL))
  - Added shortcut key description (Help-Shortcut Key), repaired the direction shortcut key movement function under batch processing (by [d2623587501](https://github.com/d2623587501))
26
- 2021.2.5: New batch processing and undo functions (by [Evezerest](https://github.com/Evezerest)):
Leif's avatar
Leif committed
27
28
  - **Batch processing function**: Press and hold the Ctrl key to select the box, you can move, copy, and delete in batches.
  - **Undo function**: In the process of drawing a four-point label box or after editing the box, press Ctrl+Z to undo the previous operation.
29
  - Fix image rotation and size problems, optimize the process of editing the mark frame (by [ninetailskim](https://github.com/ninetailskim)[edencfc](https://github.com/edencfc)).
30
- 2021.1.11: Optimize the labeling experience (by [edencfc](https://github.com/edencfc)),
WenmuZhou's avatar
WenmuZhou committed
31
  - Users can choose whether to pop up the label input dialog after drawing the detection box in "View - Pop-up Label Input Dialog".
32
33
  - The recognition result scrolls synchronously when users click related detection box.
  - Click to modify the recognition result.(If you can't change the result, please switch to the system default input method, or switch back to the original input method again)
34
35
- 2020.12.18: Support re-recognition of a single label box (by [ninetailskim](https://github.com/ninetailskim) ), perfect shortcut keys.

Leif's avatar
Leif committed
36

grasswolfs's avatar
grasswolfs committed
37

38
39
40
## 1. Installation and Run

### 1.1 Install PaddlePaddle
Leif's avatar
Leif committed
41
42
43
44
45

```bash
pip3 install --upgrade pip

# If you have cuda9 or cuda10 installed on your machine, please run the following command to install
46
python3 -m pip install paddlepaddle-gpu -i https://mirror.baidu.com/pypi/simple
Leif's avatar
Leif committed
47
48

# If you only have cpu on your machine, please run the following command to install
49
python3 -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
Leif's avatar
Leif committed
50
51
52
53
```

For more software version requirements, please refer to the instructions in [Installation Document](https://www.paddlepaddle.org.cn/install/quick) for operation.

54
### 1.2 Install and Run PPOCRLabel
Leif's avatar
Leif committed
55

56
PPOCRLabel can be started in two ways: whl package and Python script. The whl package form is more convenient to start, and the python script to start is convenient for secondary development.
Leif's avatar
Leif committed
57

58
#### Windows
Leif's avatar
Leif committed
59
60

```bash
61
pip install PPOCRLabel  # install
62
63

# Select label mode and run 
HinGwenWoong's avatar
Fix doc  
HinGwenWoong committed
64
65
PPOCRLabel  # [Normal mode] for [detection + recognition] labeling
PPOCRLabel --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling
Leif's avatar
Leif committed
66
67
```

68
69
70
71
> If you getting this error `OSError: [WinError 126] The specified module could not be found` when you install shapely on windows. Please try to download Shapely whl file using http://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely.
>
> Reference: [Solve shapely installation on windows](https://stackoverflow.com/questions/44398265/install-shapely-oserror-winerror-126-the-specified-module-could-not-be-found)
>
Leif's avatar
Leif committed
72

73
#### Ubuntu Linux
Leif's avatar
Leif committed
74

75
76
77
```bash
pip3 install PPOCRLabel
pip3 install trash-cli
78
79

# Select label mode and run 
HinGwenWoong's avatar
Fix doc  
HinGwenWoong committed
80
81
PPOCRLabel  # [Normal mode] for [detection + recognition] labeling
PPOCRLabel --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling
82
```
grasswolfs's avatar
grasswolfs committed
83

84
#### MacOS
Leif's avatar
Leif committed
85
```bash
86
87
pip3 install PPOCRLabel
pip3 install opencv-contrib-python-headless==4.2.0.32
88
89

# Select label mode and run 
90
91
PPOCRLabel  # [Normal mode] for [detection + recognition] labeling
PPOCRLabel --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling
Leif's avatar
Leif committed
92
93
```

Leif's avatar
Leif committed
94
95
#### 1.2.2 Run PPOCRLabel by Python Script
If you modify the PPOCRLabel file (for example, specifying a new built-in model), it will be more convenient to see the results by running the Python script. If you still want to start with the whl package, you need to uninstall the whl package in the current environment and then recompile it according to the next section.
96

Leif's avatar
Leif committed
97
```bash
98
cd ./PPOCRLabel  # Switch to the PPOCRLabel directory
99
100

# Select label mode and run 
101
102
python PPOCRLabel.py  # [Normal mode] for [detection + recognition] labeling
python PPOCRLabel.py --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling
Leif's avatar
Leif committed
103
104
```

Leif's avatar
Leif committed
105
106
107
108
109
110
111
#### 1.2.3 Build and Install the Whl Package Locally
Compile and install a new whl package, where 1.0.2 is the version number, you can specify the new version in 'setup.py'.
```bash
cd PaddleOCR/PPOCRLabel
python3 setup.py bdist_wheel
pip3 install dist/PPOCRLabel-1.0.2-py2.py3-none-any.whl
```
112
113


Leif's avatar
Leif committed
114
## 2. Usage
grasswolfs's avatar
grasswolfs committed
115

Leif's avatar
Leif committed
116
### 2.1 Steps
grasswolfs's avatar
grasswolfs committed
117
118
119
120
121

1. Build and launch using the instructions above.

2. Click 'Open Dir' in Menu/File to select the folder of the picture.<sup>[1]</sup>

Leif's avatar
Leif committed
122
3. Click 'Auto recognition', use PP-OCR model to automatically annotate images which marked with 'X' <sup>[2]</sup>before the file name.
grasswolfs's avatar
grasswolfs committed
123
124
125
126

4. Create Box:

   4.1 Click 'Create RectBox' or press 'W' in English keyboard mode to draw a new rectangle detection box. Click and release left mouse to select a region to annotate the text area.
Leif's avatar
Leif committed
127

Leif's avatar
Leif committed
128
   4.2 Press 'Q' to enter four-point labeling mode which enables you to create any four-point shape by clicking four points with the left mouse button in succession and DOUBLE CLICK the left mouse as the signal of labeling completion.
Leif's avatar
Leif committed
129

grasswolfs's avatar
grasswolfs committed
130
5. After the marking frame is drawn, the user clicks "OK", and the detection frame will be pre-assigned a "TEMPORARY" label.
Leif's avatar
Leif committed
131

grasswolfs's avatar
grasswolfs committed
132
6. Click 're-Recognition', model will rewrite ALL recognition results in ALL detection box<sup>[3]</sup>.
Leif's avatar
Leif committed
133

HinGwenWoong's avatar
HinGwenWoong committed
134
7. Single click the result in 'recognition result' list to manually change inaccurate recognition results.
Leif's avatar
Leif committed
135

Leif's avatar
Leif committed
136
8. **Click "Check", the image status will switch to "√",then the program automatically jump to the next.**
Leif's avatar
Leif committed
137

Leif's avatar
Leif committed
138
9. Click "Delete Image", and the image will be deleted to the recycle bin.
Leif's avatar
Leif committed
139

Leif's avatar
Leif committed
140
10. Labeling result: the user can export the label result manually through the menu "File - Export Label", while the program will also export automatically if "File - Auto export Label Mode" is selected. The manually checked label will be stored in *Label.txt* under the opened picture folder. Click "File"-"Export Recognition Results" in the menu bar, the recognition training data of such pictures will be saved in the *crop_img* folder, and the recognition label will be saved in *rec_gt.txt*<sup>[4]</sup>.
Leif's avatar
Leif committed
141

Leif's avatar
Leif committed
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
### 2.2 Table Annotation
The table annotation is aimed at extracting the structure of the table in a picture and converting it to Excel format, 
so the annotation needs to be done simultaneously with external software to edit Excel.
In PPOCRLabel, complete the text information labeling (text and position), complete the table structure information 
labeling in the Excel file, the recommended steps are:

1. Table annotation: After opening the table picture, click on the `Table Recognition` button in the upper right corner of PPOCRLabel, which will call the table recognition model in PP-Structure to automatically label 
the table and pop up Excel at the same time.
   
2. Change the recognition result: **label each cell** (i.e. the text in a cell is marked as a box). Right click on the box and click on `Cell Re-recognition`. 
   You can use the model to automatically recognise the text within a cell.
   
3. Mark the table structure: for each cell contains the text, **mark as any identifier (such as `1`) in Excel**, to ensure that the merged cell structure is same as the original picture.

4. Export JSON format annotation: close all Excel files corresponding to table images, click `File`-`Export table JSON annotation` to obtain JSON annotation results.

### 2.3 Note
grasswolfs's avatar
grasswolfs committed
159
160
161
162
163

[1] PPOCRLabel uses the opened folder as the project. After opening the image folder, the picture will not be displayed in the dialog. Instead, the pictures under the folder will be directly imported into the program after clicking "Open Dir".

[2] The image status indicates whether the user has saved the image manually. If it has not been saved manually it is "X", otherwise it is "√", PPOCRLabel will not relabel pictures with a status of "√".

164
[3] After clicking "Re-recognize", the model will overwrite ALL recognition results in the picture. Therefore, if the recognition result has been manually changed before, it may change after re-recognition.
grasswolfs's avatar
grasswolfs committed
165
166
167
168

[4] The files produced by PPOCRLabel can be found under the opened picture folder including the following, please do not manually change the contents, otherwise it will cause the program to be abnormal.

|   File name   |                         Description                          |
Leif's avatar
Leif committed
169
| :-----------: | :----------------------------------------------------------: |
Leif's avatar
Leif committed
170
|   Label.txt   | The detection label file can be directly used for PP-OCR detection model training. After the user saves 5 label results, the file will be automatically exported. It will also be written when the user closes the application or changes the file folder. |
grasswolfs's avatar
grasswolfs committed
171
172
| fileState.txt | The picture status file save the image in the current folder that has been manually confirmed by the user. |
|  Cache.cach   |    Cache files to save the results of model recognition.     |
Leif's avatar
Leif committed
173
|  rec_gt.txt   | The recognition label file, which can be directly used for PP-OCR identification model training, is generated after the user clicks on the menu bar "File"-"Export recognition result". |
grasswolfs's avatar
grasswolfs committed
174
175
|   crop_img    | The recognition data, generated at the same time with *rec_gt.txt* |

176
177


Leif's avatar
Leif committed
178
## 3. Explanation
grasswolfs's avatar
grasswolfs committed
179

Leif's avatar
Leif committed
180
### 3.1 Shortcut keys
181

182
| Shortcut keys            | Description                                      |
HinGwenWoong's avatar
HinGwenWoong committed
183
|--------------------------|--------------------------------------------------|
184
185
| Ctrl + Shift + R         | Re-recognize all the labels of the current image |
| W                        | Create a rect box                                |
Leif's avatar
Leif committed
186
| Q                        | Create a multi-points box                         |
HinGwenWoong's avatar
HinGwenWoong committed
187
188
| X                        | Rotate the box anti-clockwise                    |
| C                        | Rotate the box clockwise                         |
189
| Ctrl + E                 | Edit label of the selected box                   |
190
| Ctrl + X                 | Change key class of the box when enable `--kie`  |
191
192
193
| Ctrl + R                 | Re-recognize the selected box                    |
| Ctrl + C                 | Copy and paste the selected box                  |
| Ctrl + Left Mouse Button | Multi select the label box                       |
Leif's avatar
Leif committed
194
| Backspace                 | Delete the selected box                          |
195
196
197
198
199
200
201
| Ctrl + V                 | Check image                                      |
| Ctrl + Shift + d         | Delete image                                     |
| D                        | Next image                                       |
| A                        | Previous image                                   |
| Ctrl++                   | Zoom in                                          |
| Ctrl--                   | Zoom out                                         |
| ↑→↓←                     | Move selected box                                |
202

Leif's avatar
Leif committed
203
### 3.2 Built-in Model
grasswolfs's avatar
grasswolfs committed
204
205
206

- Default model: PPOCRLabel uses the Chinese and English ultra-lightweight OCR model in PaddleOCR by default, supports Chinese, English and number recognition, and multiple language detection.

WenmuZhou's avatar
WenmuZhou committed
207
- Model language switching: Changing the built-in model language is supportable by clicking "PaddleOCR"-"Choose OCR Model" in the menu bar. Currently supported languages​include French, German, Korean, and Japanese.
grasswolfs's avatar
grasswolfs committed
208
  For specific model download links, please refer to [PaddleOCR Model List](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/doc/doc_en/models_list_en.md#multilingual-recognition-modelupdating)
Leif's avatar
Leif committed
209

210
- **Custom Model**: If users want to replace the built-in model with their own inference model, they can follow the [Custom Model Code Usage](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.3/doc/doc_en/whl_en.md#31-use-by-code) by modifying PPOCRLabel.py for [Instantiation of PaddleOCR class](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/PPOCRLabel/PPOCRLabel.py#L86) :
Leif's avatar
Leif committed
211
212

  add parameter `det_model_dir`  in `self.ocr = PaddleOCR(use_pdserving=False, use_angle_cls=True, det=True, cls=True, use_gpu=gpu, lang=lang) `
Leif's avatar
Leif committed
213

Leif's avatar
Leif committed
214
### 3.3 Export Label Result
Leif's avatar
Leif committed
215

Leif's avatar
Leif committed
216
PPOCRLabel supports three ways to export Label.txt
Leif's avatar
Leif committed
217

Leif's avatar
Leif committed
218
- Automatically export: After selecting "File - Auto Export Label Mode", the program will automatically write the annotations into Label.txt every time the user confirms an image. If this option is not turned on, it will be automatically exported after detecting that the user has manually checked 5 images.
Leif's avatar
Leif committed
219
220
221

  > The automatically export mode is turned off by default

Leif's avatar
Leif committed
222
- Manual export: Click "File-Export Marking Results" to manually export the label.
Leif's avatar
Leif committed
223

Leif's avatar
Leif committed
224
- Close application export
Leif's avatar
Leif committed
225
226


Leif's avatar
Leif committed
227
### 3.4 Export Partial Recognition Results
Leif's avatar
Leif committed
228

Leif's avatar
Leif committed
229
For some data that are difficult to recognize, the recognition results will not be exported by **unchecking** the corresponding tags in the recognition results checkbox. The unchecked recognition result is saved as `True` in the `difficult` variable in the label file `label.txt`.
Leif's avatar
Leif committed
230

Leif's avatar
Leif committed
231
> *Note: The status of the checkboxes in the recognition results still needs to be saved manually by clicking Save Button.*
Leif's avatar
Leif committed
232

233
234
235
236
### 3.5 Dataset division

- Enter the following command in the terminal to execute the dataset division script:

237
    ```
238
  cd ./PPOCRLabel # Change the directory to the PPOCRLabel folder
239
  python gen_ocr_train_val_test.py --trainValTestRatio 6:2:2 --datasetRootPath ../train_data 
240
241
242
243
244
245
  ```

  Parameter Description:

  - `trainValTestRatio` is the division ratio of the number of images in the training set, validation set, and test set, set according to your actual situation, the default is `6:2:2`

246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
  - `datasetRootPath` is the storage path of the complete dataset labeled by PPOCRLabel. The default path is `PaddleOCR/train_data` .
  ```
  |-train_data
    |-crop_img
      |- word_001_crop_0.png
      |- word_002_crop_0.jpg
      |- word_003_crop_0.jpg
      | ...
    | Label.txt
    | rec_gt.txt
    |- word_001.png
    |- word_002.jpg
    |- word_003.jpg
    | ...
  ```
  
262
### 3.6 Error message
Leif's avatar
Leif committed
263

grasswolfs's avatar
grasswolfs committed
264
- If paddleocr is installed with whl, it has a higher priority than calling PaddleOCR class with paddleocr.py, which may cause an exception if whl package is not updated.
Leif's avatar
Leif committed
265

grasswolfs's avatar
grasswolfs committed
266
- For Linux users, if you get an error starting with **objc[XXXXX]** when opening the software, it proves that your opencv version is too high. It is recommended to install version 4.2:
Leif's avatar
Leif committed
267

grasswolfs's avatar
grasswolfs committed
268
269
270
271
272
273
274
    ```
    pip install opencv-python==4.2.0.32
    ```
- If you get an error starting with **Missing string id **,you need to recompile resources:
    ```
    pyrcc5 -o libs/resources.py resources.qrc
    ```
WenmuZhou's avatar
WenmuZhou committed
275
- If you get an error ``` module 'cv2' has no attribute 'INTER_NEAREST'```, you need to delete all opencv related packages first, and then reinstall the 4.2.0.32  version of headless opencv
Leif's avatar
Leif committed
276
    ```
WenmuZhou's avatar
WenmuZhou committed
277
    pip install opencv-contrib-python-headless==4.2.0.32
Leif's avatar
Leif committed
278
    ```
WenmuZhou's avatar
WenmuZhou committed
279

–MrCuiHao's avatar
MrCuiHao committed
280
281


282
### 4. Related
Leif's avatar
Leif committed
283

284
1.[Tzutalin. LabelImg. Git code (2015)](https://github.com/tzutalin/labelImg)