ppocrlabel-japan


Nameppocrlabel-japan JSON
Version 0.0.2 PyPI version JSON
download
home_pagehttps://github.com/PaddlePaddle/PaddleOCR
SummaryPPOCRLabelv2 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.
upload_time2023-06-06 05:10:30
maintainer
docs_urlNone
author
requires_python
licenseApache License 2.0
keywords ocr textdetection textrecognition paddleocr crnn east star-net rosetta ocrlite db chineseocr chinesetextdetection chinesetextrecognition
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            English | [简体中文](README_ch.md)

# PPOCRLabelv2

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                |
| :-------------------------------------------------: | :--------------------------------------------: |
|  <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="100%"/>  |

### Recent Update

- 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) )
  - Add KIE Mode by using `--kie`, for [detection + identification + keyword extraction] labeling.
  - Improve user experience: prompt for the number of files and labels, optimize interaction, and fix bugs such as only use CPU when inference
  - New functions: Support using `C` or `X` to rotate box.
- 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:
  - 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))
- 2021.2.5: New batch processing and undo functions (by [Evezerest](https://github.com/Evezerest)):
  - **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.
  - 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)).
- 2021.1.11: Optimize the labeling experience (by [edencfc](https://github.com/edencfc)),
  - Users can choose whether to pop up the label input dialog after drawing the detection box in "View - Pop-up Label Input Dialog".
  - 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)
- 2020.12.18: Support re-recognition of a single label box (by [ninetailskim](https://github.com/ninetailskim) ), perfect shortcut keys.



## 1. Installation and Run

### 1.1 Install PaddlePaddle

```bash
pip3 install --upgrade pip

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

# If you only have cpu on your machine, please run the following command to install
python3 -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
```

For more software version requirements, please refer to the instructions in [Installation Document](https://www.paddlepaddle.org.cn/install/quick) 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

```bash
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](https://stackoverflow.com/questions/44398265/install-shapely-oserror-winerror-126-the-specified-module-could-not-be-found)
>

#### Ubuntu Linux

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

```bash
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
Compile and install a new whl package, where 0.0.0 is the version number, you can specify the new version in 'setup.py'.
```bash
cd ./PPOCRLabel
python3 setup.py bdist_wheel
pip3 install dist/PPOCRLabel-0.0.0-py2.py3-none-any.whl
```


## 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.<sup>[1]</sup>

3. Click 'Auto recognition', use PP-OCR 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.

   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<sup>[3]</sup>.

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

### 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                        | Create a multi-points box                         |
| X                        | Rotate the box anti-clockwise                    |
| C                        | Rotate the box clockwise                         |
| 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                 | Delete the selected box                          |
| Ctrl + V                 | Check image                                      |
| Ctrl + Shift + d         | Delete image                                     |
| D                        | Next image                                       |
| A                        | Previous image                                   |
| Ctrl++                   | Zoom in                                          |
| Ctrl--                   | Zoom out                                         |
| ↑→↓←                     | Move selected box                                |

### 3.2 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)

- **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) :

  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) `

### 3.3 Export Label Result

PPOCRLabel supports three ways to export Label.txt

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

  > The automatically export mode is turned off by default

- Manual export: Click "File-Export Marking Results" to manually export the label.

- Close application export

### 3.4 Dataset division

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

    ```
  cd ./PPOCRLabel # Change the directory to the PPOCRLabel folder
  python gen_ocr_train_val_test.py --trainValTestRatio 6:2:2 --datasetRootPath ../train_data 
  ```

  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`

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

### 3.5 Error message

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

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

    ```
    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
    ```
- 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
    ```
    pip install opencv-contrib-python-headless==4.2.0.32
    ```



### 4. Related

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



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/PaddlePaddle/PaddleOCR",
    "name": "ppocrlabel-japan",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "ocr textdetection textrecognition paddleocr crnn east star-net rosetta ocrlite db chineseocr chinesetextdetection chinesetextrecognition",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/09/ea/4fd7f37a26a2bf97a347c0ef36ed83503f835e0f7d6d0a52541dbf6a7a6d/ppocrlabel-japan-0.0.2.tar.gz",
    "platform": null,
    "description": "English | [\u7b80\u4f53\u4e2d\u6587](README_ch.md)\r\n\r\n# PPOCRLabelv2\r\n\r\nPPOCRLabelv2 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.\r\n\r\n|               regular text annotation               |                table annotation                |\r\n| :-------------------------------------------------: | :--------------------------------------------: |\r\n|  <img src=\"./data/gif/steps_en.gif\" width=\"80%\"/>   | <img src=\"./data/gif/table.gif\" width=\"100%\"/> |\r\n|            **irregular text annotation**            |         **key information annotation**         |\r\n| <img src=\"./data/gif/multi-point.gif\" width=\"80%\"/> |  <img src=\"./data/gif/kie.gif\" width=\"100%\"/>  |\r\n\r\n### Recent Update\r\n\r\n- 2022.05: Add table annotations, follow `2.2 Table Annotations` for more information \uff08by [whjdark](https://github.com/peterh0323); [Evezerest](https://github.com/Evezerest))\r\n- 2022.02:\uff08by [PeterH0323](https://github.com/peterh0323) \uff09\r\n  - Add KIE Mode by using `--kie`, for [detection + identification + keyword extraction] labeling.\r\n  - Improve user experience: prompt for the number of files and labels, optimize interaction, and fix bugs such as only use CPU when inference\r\n  - New functions: Support using `C` or `X` to rotate box.\r\n- 2021.11.17:\r\n  - Support install and start PPOCRLabel through the whl package (by [d2623587501](https://github.com/d2623587501))\r\n  - Dataset segmentation: Divide the annotation file into training, verification and testing parts (refer to section 3.5 below, by [MrCuiHao](https://github.com/MrCuiHao))\r\n- 2021.8.11:\r\n  - 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))\r\n  - Added shortcut key description (Help-Shortcut Key), repaired the direction shortcut key movement function under batch processing (by [d2623587501](https://github.com/d2623587501))\r\n- 2021.2.5: New batch processing and undo functions (by [Evezerest](https://github.com/Evezerest)):\r\n  - **Batch processing function**: Press and hold the Ctrl key to select the box, you can move, copy, and delete in batches.\r\n  - **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.\r\n  - Fix image rotation and size problems, optimize the process of editing the mark frame (by [ninetailskim](https://github.com/ninetailskim)\u3001 [edencfc](https://github.com/edencfc)).\r\n- 2021.1.11: Optimize the labeling experience (by [edencfc](https://github.com/edencfc)),\r\n  - Users can choose whether to pop up the label input dialog after drawing the detection box in \"View - Pop-up Label Input Dialog\".\r\n  - The recognition result scrolls synchronously when users click related detection box.\r\n  - 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)\r\n- 2020.12.18: Support re-recognition of a single label box (by [ninetailskim](https://github.com/ninetailskim) ), perfect shortcut keys.\r\n\r\n\r\n\r\n## 1. Installation and Run\r\n\r\n### 1.1 Install PaddlePaddle\r\n\r\n```bash\r\npip3 install --upgrade pip\r\n\r\n# If you have cuda9 or cuda10 installed on your machine, please run the following command to install\r\npython3 -m pip install paddlepaddle-gpu -i https://mirror.baidu.com/pypi/simple\r\n\r\n# If you only have cpu on your machine, please run the following command to install\r\npython3 -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple\r\n```\r\n\r\nFor more software version requirements, please refer to the instructions in [Installation Document](https://www.paddlepaddle.org.cn/install/quick) for operation.\r\n\r\n### 1.2 Install and Run PPOCRLabel\r\n\r\nPPOCRLabel 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.\r\n\r\n#### Windows\r\n\r\n```bash\r\npip install PPOCRLabel  # install\r\n\r\n# Select label mode and run \r\nPPOCRLabel  # [Normal mode] for [detection + recognition] labeling\r\nPPOCRLabel --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling\r\n```\r\n\r\n> 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.\r\n>\r\n> Reference: [Solve shapely installation on windows](https://stackoverflow.com/questions/44398265/install-shapely-oserror-winerror-126-the-specified-module-could-not-be-found)\r\n>\r\n\r\n#### Ubuntu Linux\r\n\r\n```bash\r\npip3 install PPOCRLabel\r\npip3 install trash-cli\r\n\r\n# Select label mode and run \r\nPPOCRLabel  # [Normal mode] for [detection + recognition] labeling\r\nPPOCRLabel --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling\r\n```\r\n\r\n#### MacOS\r\n```bash\r\npip3 install PPOCRLabel\r\npip3 install opencv-contrib-python-headless==4.2.0.32\r\n\r\n# Select label mode and run \r\nPPOCRLabel  # [Normal mode] for [detection + recognition] labeling\r\nPPOCRLabel --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling\r\n```\r\n\r\n#### 1.2.2 Run PPOCRLabel by Python Script\r\nIf 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.\r\n\r\n```bash\r\ncd ./PPOCRLabel  # Switch to the PPOCRLabel directory\r\n\r\n# Select label mode and run \r\npython PPOCRLabel.py  # [Normal mode] for [detection + recognition] labeling\r\npython PPOCRLabel.py --kie True # [KIE mode] for [detection + recognition + keyword extraction] labeling\r\n```\r\n\r\n#### 1.2.3 Build and Install the Whl Package Locally\r\nCompile and install a new whl package, where 0.0.0 is the version number, you can specify the new version in 'setup.py'.\r\n```bash\r\ncd ./PPOCRLabel\r\npython3 setup.py bdist_wheel\r\npip3 install dist/PPOCRLabel-0.0.0-py2.py3-none-any.whl\r\n```\r\n\r\n\r\n## 2. Usage\r\n\r\n### 2.1 Steps\r\n\r\n1. Build and launch using the instructions above.\r\n\r\n2. Click 'Open Dir' in Menu/File to select the folder of the picture.<sup>[1]</sup>\r\n\r\n3. Click 'Auto recognition', use PP-OCR model to automatically annotate images which marked with 'X' <sup>[2]</sup>before the file name.\r\n\r\n4. Create Box:\r\n\r\n   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.\r\n\r\n   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.\r\n\r\n5. After the marking frame is drawn, the user clicks \"OK\", and the detection frame will be pre-assigned a \"TEMPORARY\" label.\r\n\r\n6. Click 're-Recognition', model will rewrite ALL recognition results in ALL detection box<sup>[3]</sup>.\r\n\r\n7. Single click the result in 'recognition result' list to manually change inaccurate recognition results.\r\n\r\n8. **Click \"Check\", the image status will switch to \"\u221a\",then the program automatically jump to the next.**\r\n\r\n9. Click \"Delete Image\", and the image will be deleted to the recycle bin.\r\n\r\n10. 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>.\r\n\r\n### 2.2 Table Annotation\r\nThe table annotation is aimed at extracting the structure of the table in a picture and converting it to Excel format, \r\nso the annotation needs to be done simultaneously with external software to edit Excel.\r\nIn PPOCRLabel, complete the text information labeling (text and position), complete the table structure information \r\nlabeling in the Excel file, the recommended steps are:\r\n\r\n1. 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 \r\n    the table and pop up Excel at the same time.\r\n\r\n2. 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`. \r\n   You can use the model to automatically recognise the text within a cell.\r\n\r\n3. 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.\r\n\r\n\t> 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.\r\n\r\n4. ***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\r\n\r\n5. Export JSON format annotation: close all Excel files corresponding to table images, click `File-Export Table Label` to obtain `gt.txt` annotation results.\r\n\r\n### 2.3 Note\r\n\r\n[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\".\r\n\r\n[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 \"\u221a\", PPOCRLabel will not relabel pictures with a status of \"\u221a\".\r\n\r\n[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.\r\n\r\n[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.\r\n\r\n|   File name   |                         Description                          |\r\n| :-----------: | :----------------------------------------------------------: |\r\n|   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. |\r\n| fileState.txt | The picture status file save the image in the current folder that has been manually confirmed by the user. |\r\n|  Cache.cach   |    Cache files to save the results of model recognition.     |\r\n|  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\". |\r\n|   crop_img    | The recognition data, generated at the same time with *rec_gt.txt* |\r\n\r\n\r\n\r\n## 3. Explanation\r\n\r\n### 3.1 Shortcut keys\r\n\r\n| Shortcut keys            | Description                                      |\r\n|--------------------------|--------------------------------------------------|\r\n| Ctrl + Shift + R         | Re-recognize all the labels of the current image |\r\n| W                        | Create a rect box                                |\r\n| Q                        | Create a multi-points box                         |\r\n| X                        | Rotate the box anti-clockwise                    |\r\n| C                        | Rotate the box clockwise                         |\r\n| Ctrl + E                 | Edit label of the selected box                   |\r\n| Ctrl + X                 | Change key class of the box when enable `--kie`  |\r\n| Ctrl + R                 | Re-recognize the selected box                    |\r\n| Ctrl + C                 | Copy and paste the selected box                  |\r\n| Ctrl + Left Mouse Button | Multi select the label box                       |\r\n| Backspace                 | Delete the selected box                          |\r\n| Ctrl + V                 | Check image                                      |\r\n| Ctrl + Shift + d         | Delete image                                     |\r\n| D                        | Next image                                       |\r\n| A                        | Previous image                                   |\r\n| Ctrl++                   | Zoom in                                          |\r\n| Ctrl--                   | Zoom out                                         |\r\n| \u2191\u2192\u2193\u2190                     | Move selected box                                |\r\n\r\n### 3.2 Built-in Model\r\n\r\n- 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.\r\n\r\n- Model language switching: Changing the built-in model language is supportable by clicking \"PaddleOCR\"-\"Choose OCR Model\" in the menu bar. Currently supported languages\u200binclude French, German, Korean, and Japanese.\r\n  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)\r\n\r\n- **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) :\r\n\r\n  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) `\r\n\r\n### 3.3 Export Label Result\r\n\r\nPPOCRLabel supports three ways to export Label.txt\r\n\r\n- 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.\r\n\r\n  > The automatically export mode is turned off by default\r\n\r\n- Manual export: Click \"File-Export Marking Results\" to manually export the label.\r\n\r\n- Close application export\r\n\r\n### 3.4 Dataset division\r\n\r\n- Enter the following command in the terminal to execute the dataset division script:\r\n\r\n    ```\r\n  cd ./PPOCRLabel # Change the directory to the PPOCRLabel folder\r\n  python gen_ocr_train_val_test.py --trainValTestRatio 6:2:2 --datasetRootPath ../train_data \r\n  ```\r\n\r\n  Parameter Description:\r\n\r\n  - `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`\r\n\r\n  - `datasetRootPath` is the storage path of the complete dataset labeled by PPOCRLabel. The default path is `PaddleOCR/train_data` .\r\n  ```\r\n  |-train_data\r\n    |-crop_img\r\n      |- word_001_crop_0.png\r\n      |- word_002_crop_0.jpg\r\n      |- word_003_crop_0.jpg\r\n      | ...\r\n    | Label.txt\r\n    | rec_gt.txt\r\n    |- word_001.png\r\n    |- word_002.jpg\r\n    |- word_003.jpg\r\n    | ...\r\n  ```\r\n\r\n### 3.5 Error message\r\n\r\n- 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.\r\n\r\n- 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:\r\n\r\n    ```\r\n    pip install opencv-python==4.2.0.32\r\n    ```\r\n- If you get an error starting with **Missing string id **,you need to recompile resources:\r\n    ```\r\n    pyrcc5 -o libs/resources.py resources.qrc\r\n    ```\r\n- 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\r\n    ```\r\n    pip install opencv-contrib-python-headless==4.2.0.32\r\n    ```\r\n\r\n\r\n\r\n### 4. Related\r\n\r\n1.[Tzutalin. LabelImg. Git code (2015)](https://github.com/tzutalin/labelImg)\r\n\r\n\r\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "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.",
    "version": "0.0.2",
    "project_urls": {
        "Download": "https://github.com/PaddlePaddle/PaddleOCR.git",
        "Homepage": "https://github.com/PaddlePaddle/PaddleOCR"
    },
    "split_keywords": [
        "ocr",
        "textdetection",
        "textrecognition",
        "paddleocr",
        "crnn",
        "east",
        "star-net",
        "rosetta",
        "ocrlite",
        "db",
        "chineseocr",
        "chinesetextdetection",
        "chinesetextrecognition"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c98c8b52b26e74a46ca9ea2c083b6a412cb5ba13ee08e60c9793a1dd462e30e",
                "md5": "147ed96cfc61d318cc2fda14546d8e04",
                "sha256": "675d7e6fd498891efa7ea8bd34935b19a7de4fb8387038e9d7282264375f670e"
            },
            "downloads": -1,
            "filename": "ppocrlabel_japan-0.0.2-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "147ed96cfc61d318cc2fda14546d8e04",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 628910,
            "upload_time": "2023-06-06T05:10:27",
            "upload_time_iso_8601": "2023-06-06T05:10:27.474539Z",
            "url": "https://files.pythonhosted.org/packages/7c/98/c8b52b26e74a46ca9ea2c083b6a412cb5ba13ee08e60c9793a1dd462e30e/ppocrlabel_japan-0.0.2-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09ea4fd7f37a26a2bf97a347c0ef36ed83503f835e0f7d6d0a52541dbf6a7a6d",
                "md5": "1b463ed79403126a63a68e4ee2c75a5f",
                "sha256": "c97fe41736aa78e74e609a800e61634b66289b165e98892bce0b0851e0905b45"
            },
            "downloads": -1,
            "filename": "ppocrlabel-japan-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "1b463ed79403126a63a68e4ee2c75a5f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 44279,
            "upload_time": "2023-06-06T05:10:30",
            "upload_time_iso_8601": "2023-06-06T05:10:30.155111Z",
            "url": "https://files.pythonhosted.org/packages/09/ea/4fd7f37a26a2bf97a347c0ef36ed83503f835e0f7d6d0a52541dbf6a7a6d/ppocrlabel-japan-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-06 05:10:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PaddlePaddle",
    "github_project": "PaddleOCR",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "ppocrlabel-japan"
}
        
Elapsed time: 0.08221s