Skip to content

Commit c4914be

Browse files
committed
Unified naming
Unified naming
1 parent c6bd5ed commit c4914be

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ For a new language request, please refer to [Guideline for new language_requests
102102
- PP-OCR Industry Landing: from Training to Deployment
103103
- [PP-OCR Model Zoo](./doc/doc_en/models_en.md)
104104
- [PP-OCR Model Download](./doc/doc_en/models_list_en.md)
105-
- [Python Inference for PP-OCR Model Library](./doc/doc_en/inference_ppocr_en.md)
105+
- [Python Inference for PP-OCR Model Zoo](./doc/doc_en/inference_ppocr_en.md)
106106
- [PP-OCR Training](./doc/doc_en/training_en.md)
107107
- [Text Detection](./doc/doc_en/detection_en.md)
108108
- [Text Recognition](./doc/doc_en/recognition_en.md)

doc/doc_en/inference_ppocr_en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Python Inference for PP-OCR Model Library
2+
# Python Inference for PP-OCR Model Zoo
33

44
This article introduces the use of the Python inference engine for the PP-OCR model library. The content is in order of text detection, text recognition, direction classifier and the prediction method of the three in series on the CPU and GPU.
55

doc/doc_en/models_en.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# PP-OCR Model Zoo
22
The PP-OCR model zoo section explains some basic concepts of the OCR model and how to quickly use the models in the PP-OCR model library.
33

4-
This section contains two parts. Firstly, [PP-OCR Model Download](. /models_list_en.md) explains the concept of PP-OCR model types and provides links to download all models. The next [Python Inference for PP-OCR Model Library](. /inference_ppocr_en.md) is an introduction to the use of the PP-OCR model library, which can quickly utilize the rich model library models to obtain test results through the Python inference engine.
4+
This section contains two parts. Firstly, [PP-OCR Model Download](./models_list_en.md) explains the concept of PP-OCR model types and provides links to download all models. The next [Python Inference for PP-OCR Model Zoo](./inference_ppocr_en.md) is an introduction to the use of the PP-OCR model library, which can quickly utilize the rich model library models to obtain test results through the Python inference engine.
55

66
------
77

88
Let's first understand some basic concepts.
99

1010
- [INTRODUCTION ABOUT OCR](#introduction-about-ocr)
11-
* [BASIC CONCEPTS OF OCR DETECTION MODEL](#basic-concepts-of-ocr-detection-model)
11+
* [Basic concepts of OCR detection model](#basic-concepts-of-ocr-detection-model)
1212
* [Basic concepts of OCR recognition model](#basic-concepts-of-ocr-recognition-model)
1313
* [PP-OCR model](#pp-ocr-model)
1414
* [And a table of contents](#and-a-table-of-contents)
@@ -24,7 +24,7 @@ OCR (Optical Character Recognition, Optical Character Recognition) is currently
2424
OCR text recognition generally includes two parts, text detection and text recognition. The text detection module first uses detection algorithms to detect text lines in the image. And then the recognition algorithm to identify the specific text in the text line.
2525

2626

27-
### 1.1 BASIC CONCEPTS OF OCR DETECTION MODEL
27+
### 1.1 Basic concepts of OCR detection model
2828

2929
Text detection can locate the text area in the image, and then usually mark the word or text line in the form of a bounding box. Traditional text detection algorithms mostly extract features manually, which are characterized by fast speed and good effect in simple scenes, but the effect will be greatly reduced when faced with natural scenes. Currently, deep learning methods are mostly used.
3030

0 commit comments

Comments
 (0)