README.md 7.0 KB
Newer Older
G
grasswolfs 已提交
1 2
English | [简体中文](README_ch.md)

qq_25193841's avatar
qq_25193841 已提交
3 4
# PPOCRLabel

G
grasswolfs 已提交
5
PPOCRLabel is a semi-automatic graphic annotation tool suitable for OCR field. It is written in python3 and pyqt5, supporting rectangular box annotation and four-point annotation modes. Annotations can be directly used for the training of PPOCR detection and recognition models.
qq_25193841's avatar
qq_25193841 已提交
6

G
grasswolfs 已提交
7
<img src="./data/gif/steps_en.gif" width="100%"/>
qq_25193841's avatar
qq_25193841 已提交
8

G
grasswolfs 已提交
9
## Installation
qq_25193841's avatar
qq_25193841 已提交
10

G
grasswolfs 已提交
11 12 13 14 15
### 1. Install PaddleOCR

Refer to [PaddleOCR installation document](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/doc/doc_ch/installation.md) to prepare PaddleOCR

### 2. Install PPOCRLabel
qq_25193841's avatar
qq_25193841 已提交
16 17 18

#### Windows + Anaconda

G
grasswolfs 已提交
19 20
Download and install [Anaconda](https://www.anaconda.com/download/#download) (Python 3+)

qq_25193841's avatar
qq_25193841 已提交
21
```
qq_25193841's avatar
qq_25193841 已提交
22
pip install pyqt5
G
grasswolfs 已提交
23 24
cd ./PPOCRLabel # Change the directory to the PPOCRLabel folder
python PPOCRLabel.py
qq_25193841's avatar
qq_25193841 已提交
25 26 27 28 29 30 31
```

#### Ubuntu Linux

```
pip3 install pyqt5
pip3 install trash-cli
G
grasswolfs 已提交
32 33
cd ./PPOCRLabel # Change the directory to the PPOCRLabel folder
python3 PPOCRLabel.py
qq_25193841's avatar
qq_25193841 已提交
34 35 36 37 38
```

#### macOS
```
pip3 install pyqt5
G
grasswolfs 已提交
39 40 41 42
pip3 uninstall opencv-python # Uninstall opencv manually as it conflicts with pyqt
pip3 install opencv-contrib-python-headless # Install the headless version of opencv
cd ./PPOCRLabel # Change the directory to the PPOCRLabel folder
python3 PPOCRLabel.py
qq_25193841's avatar
qq_25193841 已提交
43 44
```

G
grasswolfs 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57
## Usage

### Steps

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>

3. Click 'Auto recognition', use PPOCR model to automatically annotate images which marked with 'X' <sup>[2]</sup>before the file name.

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.
qq_25193841's avatar
qq_25193841 已提交
58

G
grasswolfs 已提交
59
   4.2 Press 'P' 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.
qq_25193841's avatar
qq_25193841 已提交
60

G
grasswolfs 已提交
61
5. After the marking frame is drawn, the user clicks "OK", and the detection frame will be pre-assigned a "TEMPORARY" label.
qq_25193841's avatar
qq_25193841 已提交
62

G
grasswolfs 已提交
63
6. Click 're-Recognition', model will rewrite ALL recognition results in ALL detection box<sup>[3]</sup>.
qq_25193841's avatar
qq_25193841 已提交
64

G
grasswolfs 已提交
65
7. Double click the result in 'recognition result' list to manually change inaccurate recognition results.
qq_25193841's avatar
qq_25193841 已提交
66

G
grasswolfs 已提交
67
8. Click "Check", the image status will switch to "√",then the program automatically jump to the next(The results will not be written directly to the file at this time).
qq_25193841's avatar
qq_25193841 已提交
68

G
grasswolfs 已提交
69
9. Click "Delete Image" and the image will be deleted to the recycle bin.
qq_25193841's avatar
qq_25193841 已提交
70

G
grasswolfs 已提交
71 72
10. Labeling result: the user can save manually through the menu "File - Save Label", while the program will also save automatically after every 10 images confirmed by the user.the manually checked label will be stored in *Label.txt* under the opened picture folder.
    Click "PaddleOCR"-"Save 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>.
qq_25193841's avatar
qq_25193841 已提交
73

G
grasswolfs 已提交
74 75 76 77 78 79 80 81 82 83 84 85
### Note

[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 "√".

[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.

[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                          |
qq_25193841's avatar
qq_25193841 已提交
86
| :-----------: | :----------------------------------------------------------: |
G
grasswolfs 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100
|   Label.txt   | The detection label file can be directly used for PPOCR detection model training. After the user saves 10 label results, the file will be automatically saved. It will also be written when the user closes the application or changes the file folder. |
| 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.     |
|  rec_gt.txt   | The recognition label file, which can be directly used for PPOCR identification model training, is generated after the user clicks on the menu bar "File"-"Save recognition result". |
|   crop_img    | The recognition data, generated at the same time with *rec_gt.txt* |

## Explanation

### Built-in Model

- 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.

- 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.
  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)
qq_25193841's avatar
qq_25193841 已提交
101

G
grasswolfs 已提交
102
- Custom model: The model trained by users can be replaced by modifying PPOCRLabel.py in [PaddleOCR class instantiation](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/PPOCRLabel/PPOCRLabel.py#L110) referring [Custom Model Code](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/doc/doc_en/whl_en.md#use-custom-model)
qq_25193841's avatar
qq_25193841 已提交
103

G
grasswolfs 已提交
104
### Export partial recognition results
qq_25193841's avatar
qq_25193841 已提交
105

G
grasswolfs 已提交
106
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.
qq_25193841's avatar
qq_25193841 已提交
107

G
grasswolfs 已提交
108
*Note: The status of the checkboxes in the recognition results still needs to be saved manually by clicking Save Button.*
qq_25193841's avatar
qq_25193841 已提交
109

G
grasswolfs 已提交
110
### Error message
qq_25193841's avatar
qq_25193841 已提交
111

G
grasswolfs 已提交
112
- 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.
qq_25193841's avatar
qq_25193841 已提交
113

G
grasswolfs 已提交
114
- 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:
qq_25193841's avatar
qq_25193841 已提交
115

G
grasswolfs 已提交
116 117 118 119 120 121 122
    ```
    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
    ```
qq_25193841's avatar
qq_25193841 已提交
123 124 125 126 127
- 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 headless version of opencv
    ```
    pip install opencv-contrib-python-headless
    ```
    
G
grasswolfs 已提交
128
### Related
qq_25193841's avatar
qq_25193841 已提交
129 130

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