Skip to content

Commit b0c0c5e

Browse files
committed
v1.2.4
1 parent 97700ce commit b0c0c5e

File tree

4 files changed

+10
-16
lines changed

4 files changed

+10
-16
lines changed

README.md

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
Ready-to-use OCR with 80+ languages supported including Chinese, Japanese, Korean and Thai.
1010

1111
## What's new
12+
- 7 February 2021 - Version 1.2.4
13+
- Faster CPU inference speed by using dynamic input shape (recognition rate increases by around 100% for images with a lot of text)
1214
- 1 February 2021 - Version 1.2.3
1315
- Add `setLanguageList` method to `Reader` class. This is a convenient api for changing languages (within the same model) after creating class instance.
1416
- Small change on text box merging. (thanks [z-pc](https://github.com/z-pc), see [PR](https://github.com/JaidedAI/EasyOCR/pull/338))
@@ -17,14 +19,6 @@ Ready-to-use OCR with 80+ languages supported including Chinese, Japanese, Korea
1719
- 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))
1820
- 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))
1921
- Update [documentation](https://www.jaided.ai/easyocr/documentation).
20-
- 17 November 2020 - Version 1.2
21-
- New language supports for Telugu and Kannada. These are experimental lite recognition models. Their file sizes are only around 7% of other models and they are ~6x faster at inference with CPU.
22-
- 12 October 2020 - Version 1.1.10
23-
- Faster `beamsearch` decoder (thanks @amitbcp)
24-
- Better code structure (thanks @susmith98)
25-
- New language supports for Haryanvi(bgc), Sanskrit(sa) (Devanagari Script) and Manipuri(mni) (Bengari Script)
26-
- 31 August 2020 - Version 1.1.9
27-
- Add `detect` and `recognize` method for performing text detection and recognition separately
2822

2923
- [Read all released notes](https://github.com/JaidedAI/EasyOCR/blob/master/releasenotes.md)
3024

@@ -44,6 +38,10 @@ Ready-to-use OCR with 80+ languages supported including Chinese, Japanese, Korea
4438

4539
We are currently supporting 80+ languages. See [list of supported languages](https://www.jaided.ai/easyocr).
4640

41+
## Demo
42+
43+
[Try our demo on website: Jaided AI](https://www.jaided.ai/easyocr)
44+
4745
## Installation
4846

4947
Install using `pip` for stable release,
@@ -62,12 +60,6 @@ Note 1: for Windows, please install torch and torchvision first by following the
6260

6361
Note 2: We also provide Dockerfile [here](https://github.com/JaidedAI/EasyOCR/blob/master/Dockerfile).
6462

65-
#### Try Third-Party Demos
66-
67-
1. [Google Colab](https://colab.fan/easyocr)
68-
2. [Dockerhub](https://hub.docker.com/r/challisa/easyocr)
69-
3. [Ainize](https://easyocrgpu-wook-2.endpoint.ainize.ai/)
70-
7163
## Usage
7264

7365
``` python

easyocr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .easyocr import Reader
22

3-
__version__ = '1.2.3'
3+
__version__ = '1.2.4'

releasenotes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- 7 February 2021 - Version 1.2.4
2+
- Faster CPU inference speed by using dynamic input shape (recognition rate increases by around 100% for images with a lot of text)
13
- 1 February 2021 - Version 1.2.3
24
- Add `setLanguageList` method to `Reader` class. This is a convenient api for changing languages (within the same model) after creating class instance.
35
- Small change on text box merging. (thanks [z-pc](https://github.com/z-pc), see [PR](https://github.com/JaidedAI/EasyOCR/pull/338))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def readme():
1717
name='easyocr',
1818
packages=['easyocr'],
1919
include_package_data=True,
20-
version='1.2.3',
20+
version='1.2.4',
2121
install_requires=requirements,
2222
entry_points={"console_scripts": ["easyocr= easyocr.cli:main"]},
2323
license='Apache License 2.0',

0 commit comments

Comments
 (0)