PFCCLab / PPOCRLabel

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.
79 stars 26 forks source link

English | 简体中文

PPOCRLabelv2

PyPI - Version PyPI - Downloads Downloads

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.

regular text annotation table annotation
irregular text annotation key information annotation

Recent Update

1. Installation and Run

1.1 Install PaddlePaddle

pip3 install --upgrade pip

# If you only have cpu on your machine, please run the following command to install
python3 -m pip install paddlepaddle

For more software version requirements, please refer to the instructions in Installation Document for operation.

1.2 Install and Run PPOCRLabel

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.

Windows

pip install PPOCRLabel  # install

# Select label mode and run
PPOCRLabel  # [Normal mode] for [detection + recognition] labeling
PPOCRLabel --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling

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

Ubuntu Linux

pip3 install PPOCRLabel
pip3 install trash-cli

# Select label mode and run
PPOCRLabel  # [Normal mode] for [detection + recognition] labeling
PPOCRLabel --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling

MacOS

pip3 install PPOCRLabel
pip3 install opencv-contrib-python-headless==4.2.0.32

# Select label mode and run
PPOCRLabel  # [Normal mode] for [detection + recognition] labeling
PPOCRLabel --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling

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.

cd ./PPOCRLabel  # Switch to the PPOCRLabel directory

# Select label mode and run
python PPOCRLabel.py  # [Normal mode] for [detection + recognition] labeling
python PPOCRLabel.py --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling

1.2.3 Build and Install the Whl Package Locally

cd ./PPOCRLabel
pip3 install -e .

1.2.4 Pyinstaller build

cd ./PPOCRLabel
# install pyinstaller
pip install pyinstaller

# Regenerate Resources
pyrcc5 -o libs/resources.py resources.qrc

# Packaging executable programs
pyinstaller -c PPOCRLabel.py --collect-all paddleocr --collect-all pyclipper --collect-all imghdr --collect-all skimage --collect-all imgaug --collect-all scipy.io --collect-all lmdb --collect-all paddle --hidden-import=pyqt5  -p ./libs -p ./ -p ./data -p ./resources -F

# Run the executable program in dist, windows as an example
PPOCRLabel.exe --lang ch

2. Usage

2.1 Steps

  1. Build and launch using the instructions above.

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

  3. Click 'Auto recognition', use PP-OCR model to automatically annotate images which marked with 'X' [2]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.

    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.

  5. After the marking frame is drawn, the user clicks "OK", and the detection frame will be pre-assigned a "TEMPORARY" label.

  6. Click 're-Recognition', model will rewrite ALL recognition results in ALL detection box[3].

  7. Single click the result in 'recognition result' list to manually change inaccurate recognition results.

  8. Click "Check", the image status will switch to "√",then the program automatically jump to the next.

  9. Click "Delete Image", and the image will be deleted to the recycle bin.

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

  11. Additional Feature Description

    • File -> Re-recognition: After checking, the newly annotated box content will automatically trigger the Re-recognition function of the current annotation box, eliminating the need to click the Re-identify button. This is suitable for scenarios where you do not want to use Automatic Annotation but prefer manual annotation, such as license plate recognition. In a single image with only one license plate, using Automatic Annotation would require deleting many additional recognized text boxes, which is less efficient than directly re-annotating.
    • File -> Auto Save Unsaved changes: By default, you need to press the Check button to complete the marking confirmation for the current box, which can be cumbersome. After checking, when switching to the next image (by pressing the shortcut key D), a prompt box asking to confirm whether to save unconfirmed markings will no longer appear. The current markings will be automatically saved and the next image will be switched, making it convenient for quick marking.
    • After selecting the bounding box, there are 5 shortcut keys available to individually control the movement of the four vertices of the bounding box, suitable for scenarios that require precise control over the positions of the bounding box vertices:
      • z: After pressing, the up, down, left, and right arrow keys will move the 1st vertex individually.
      • x: After pressing, the up, down, left, and right arrow keys will move the 2nd vertex individually.
      • c: After pressing, the up, down, left, and right arrow keys will move the 3rd vertex individually.
      • v: After pressing, the up, down, left, and right arrow keys will move the 4th vertex individually.
      • b: After pressing, the up, down, left, and right arrow keys will revert to the default action of moving the entire bounding box.

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.

    Note: If there are blank cells in the table, you also need to mark them with a bounding box so that the total number of cells is the same as in the image.

  4. Adjust cell order: Click on the menu View - Show Box Number to show the box ordinal numbers, and drag all the results under the 'Recognition Results' column on the right side of the software interface to make the box numbers are arranged from left to right, top to bottom

  5. Export JSON format annotation: close all Excel files corresponding to table images, click File-Export Table Label to obtain gt.txt annotation results.

2.3 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
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.
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 PP-OCR identification model training, is generated after the user clicks on the menu bar "File"-"Export recognition result".
crop_img The recognition data, generated at the same time with rec_gt.txt

3. Explanation

3.1 Shortcut keys

Shortcut keys Description
Ctrl + Shift + R Re-recognize all the labels of the current image
W Create a rect box
Q or Home Create a multi-points box
Ctrl + E Edit label of the selected box
Ctrl + X Change key class of the box when enable --kie
Ctrl + R Re-recognize the selected box
Ctrl + C Copy and paste the selected box
Ctrl + Left Mouse Button Multi select the label box
Backspace or Delete Delete the selected box
Ctrl + V or End Check image
Ctrl + Shift + d Delete image
D Next image
A Previous image
Ctrl++ Zoom in
Ctrl-- Zoom out
↑→↓← Move selected box
Z, X, C, V, B Move the four vertices of the selected bounding box individually

3.2 Built-in Model

3.3 Export Label Result

PPOCRLabel supports three ways to export Label.txt

3.4 Dataset division

3.5 Error message

4. Related

1.Tzutalin. LabelImg. Git code (2015)