Skip to content

Commit 1b0a372

Browse files
committed
v1.3.2
1 parent c210572 commit 1b0a372

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ Ready-to-use OCR with 80+ [supported languages](https://www.jaided.ai/easyocr) a
1111
[Try Demo on our website](https://www.jaided.ai/easyocr)
1212

1313
## What's new
14+
- 30 May 2021 - Version 1.3.2
15+
- Faster greedy decoder (thanks [@samayala22](https://github.com/samayala22))
16+
- Fix bug when text box's aspect ratio is disproportional (thanks [iQuartic](https://iquartic.com/) for bug report)
1417
- 20 April 2021 - Version 1.3.1
1518
- Add support for PIL image (thanks [@prays](https://github.com/prays))
1619
- Add Tajik language (tjk)
@@ -21,11 +24,6 @@ Ready-to-use OCR with 80+ [supported languages](https://www.jaided.ai/easyocr) a
2124
EasyOCR will choose the latest model by default but you can also specify which model to use by passing `recog_network` argument when creating `Reader` instance.
2225
For example, `reader = easyocr.Reader(['en','fr'], recog_network = 'latin_g1')` will use the 1st generation Latin model.
2326
- List of all models: [Model hub](https://www.jaided.ai/easyocr/modelhub)
24-
- 22 February 2021 - Version 1.2.5
25-
- Add dynamic quantization for faster CPU inference (it is enabled by default for CPU mode)
26-
- More sensible confident score
27-
- 7 February 2021 - Version 1.2.4
28-
- Faster CPU inference speed by using dynamic input shape (recognition rate increases by around 100% for images with a lot of text)
2927

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

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.3.1'
3+
__version__ = '1.3.2'

releasenotes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
- 30 May 2021 - Version 1.3.2
2+
- Faster greedy decoder (thanks [@samayala22](https://github.com/samayala22))
3+
- Fix bug when text box's aspect ratio is disproportional (thanks [iQuartic](https://iquartic.com/) for bug report)
14
- 20 April 2021 - Version 1.3.1
25
- Add support for PIL image (thanks [@prays](https://github.com/prays))
36
- Add Tajik language (tjk)

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.3.1',
20+
version='1.3.2',
2121
install_requires=requirements,
2222
entry_points={"console_scripts": ["easyocr= easyocr.cli:main"]},
2323
license='Apache License 2.0',

0 commit comments

Comments
 (0)