-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
22 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,13 @@ | |
[![Tweet](https://img.shields.io/twitter/url/https/github.com/JaidedAI/EasyOCR.svg?style=social)](https://twitter.com/intent/tweet?text=Check%20out%20this%20awesome%20library:%20EasyOCR%20https://github.com/JaidedAI/EasyOCR) | ||
[![Twitter](https://img.shields.io/badge/[email protected]?style=flat)](https://twitter.com/JaidedAI) | ||
|
||
Ready-to-use OCR with 70+ languages supported including Chinese, Japanese, Korean and Thai. | ||
Ready-to-use OCR with 80+ languages supported including Chinese, Japanese, Korean and Thai. | ||
|
||
## What's new | ||
- 1 February 2021 - Version 1.2.3 | ||
- Add `setLanguageList` method to `Reader` class. This is a convenient api for changing languages (within the same model) after creating class instance. | ||
- Small change on text box merging. (thanks [z-pc](https://github.com/z-pc), see [PR](https://github.com/JaidedAI/EasyOCR/pull/338)) | ||
- [Basic Demo on website](https://www.jaided.ai/easyocr) | ||
- 5 January 2021 - Version 1.2.2 | ||
- Add `optimal_num_chars` to `detect` method. If specified, bounding boxes with estimated number of characters near this value are returned first. (thanks [@adamfrees](https://github.com/adamfrees)) | ||
- Add `rotation_info` to `readtext` method. Allow EasyOCR to rotate each text box and return the one with the best confident score. Eligible values are 90, 180 and 270. For example, try [90, 180 ,270] for all possible text orientations. (thanks [@mijoo308](https://github.com/mijoo308)) | ||
|
@@ -38,7 +42,7 @@ Ready-to-use OCR with 70+ languages supported including Chinese, Japanese, Korea | |
|
||
## Supported Languages | ||
|
||
We are currently supporting 70+ languages. See [list of supported languages](https://www.jaided.ai/easyocr). | ||
We are currently supporting 80+ languages. See [list of supported languages](https://www.jaided.ai/easyocr). | ||
|
||
## Installation | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from .easyocr import Reader | ||
|
||
__version__ = '1.2.2' | ||
__version__ = '1.2.3' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters