Skip to content

Commit c999505

Browse files
committed
v1.7.1
1 parent 325b5ee commit c999505

File tree

4 files changed

+6
-27
lines changed

4 files changed

+6
-27
lines changed

README.md

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Integrated into [Huggingface Spaces 🤗](https://huggingface.co/spaces) using [
1414

1515

1616
## What's new
17+
- 4 September 2023 - Version 1.7.1
18+
- Fix several compatibilities
1719
- 25 May 2023 - Version 1.7.0
1820
- Add Apple Silicon support (thanks[@rayeesoft](https://github.com/rayeesoft) and [@ArtemBernatskyy](https://github.com/ArtemBernatskyy), see [PR](https://github.com/JaidedAI/EasyOCR/pull/1004))
1921
- Fix several compatibilities
@@ -28,31 +30,6 @@ Integrated into [Huggingface Spaces 🤗](https://huggingface.co/spaces) using [
2830
- Add detector `DBnet`, see [paper](https://arxiv.org/abs/2202.10304v1). It can be used by initializing like this `reader = easyocr.Reader(['en'], detect_network = 'dbnet18')`.
2931
- 2 June 2022 - Version 1.5.0
3032
- Add trainer for CRAFT detection model (thanks[@gmuffiness](https://github.com/gmuffiness), see [PR](https://github.com/JaidedAI/EasyOCR/pull/739))
31-
- 9 April 2022 - Version 1.4.2
32-
- Update dependencies (opencv and pillow issues)
33-
- 11 September 2021 - Version 1.4.1
34-
- Add trainer folder
35-
- Add `readtextlang` method (thanks[@arkya-art](https://github.com/arkya-art), see [PR](https://github.com/JaidedAI/EasyOCR/pull/525))
36-
- Extend `rotation_info` argument to support all possible angles (thanks[abde0103](https://github.com/abde0103), see [PR](https://github.com/JaidedAI/EasyOCR/pull/515))
37-
- 29 June 2021 - Version 1.4
38-
- [Instructions](https://github.com/JaidedAI/EasyOCR/blob/master/custom_model.md) on training/using custom recognition models
39-
- Example [dataset](https://www.jaided.ai/easyocr/modelhub) for model training
40-
- Batched image inference for GPUs (thanks [@SamSamhuns](https://github.com/SamSamhuns), see [PR](https://github.com/JaidedAI/EasyOCR/pull/458))
41-
- Vertical text support (thanks [@interactivetech](https://github.com/interactivetech)). This is for rotated text, not to be confused with vertical Chinese or Japanese text. (see [PR](https://github.com/JaidedAI/EasyOCR/pull/450))
42-
- Output in dictionary format (thanks [@A2va](https://github.com/A2va), see [PR](https://github.com/JaidedAI/EasyOCR/pull/441))
43-
- 30 May 2021 - Version 1.3.2
44-
- Faster greedy decoder (thanks [@samayala22](https://github.com/samayala22))
45-
- Fix bug when a text box's aspect ratio is disproportional (thanks [iQuartic](https://iquartic.com/) for bug report)
46-
- 20 April 2021 - Version 1.3.1
47-
- Add support for PIL image (thanks [@prays](https://github.com/prays))
48-
- Add Tajik language (tjk)
49-
- Update argument setting for command line
50-
- Add `x_ths` and `y_ths` to control merging behavior when `paragraph=True`
51-
- 21 March 2021 - Version 1.3
52-
- Second-generation models: multiple times smaller size, multiple times faster inference, additional characters and comparable accuracy to the first generation models.
53-
EasyOCR will choose the latest model by default but you can also specify which model to use by passing `recog_network` argument when creating a `Reader` instance.
54-
For example, `reader = easyocr.Reader(['en','fr'], recog_network='latin_g1')` will use the 1st generation Latin model
55-
- List of all models: [Model hub](https://www.jaided.ai/easyocr/modelhub)
5633

5734
- [Read all release notes](https://github.com/JaidedAI/EasyOCR/blob/master/releasenotes.md)
5835

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.7.0'
3+
__version__ = '1.7.1'

releasenotes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- 4 September 2023 - Version 1.7.1
2+
- Fix several compatibilities
13
- 25 May 2023 - Version 1.7.0
24
- Add Apple Silicon support (thanks[@rayeesoft](https://github.com/rayeesoft) and [@ArtemBernatskyy](https://github.com/ArtemBernatskyy), see [PR](https://github.com/JaidedAI/EasyOCR/pull/1004))
35
- Fix several compatibilities

setup.py

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

0 commit comments

Comments
 (0)