Metadata-Version: 2.1
Name: easypaddleocr
Version: 0.1.4
Summary: A simple, optional tool for PaddleOCR Detection, direction classification and recognition on CPU and GPU using torch.
Author: pk5ls20, hv0905
Project-URL: Code, https://github.com/pk5ls20/EasyPaddleOCR
Project-URL: Documentation, https://github.com/pk5ls20/EasyPaddleOCR
Project-URL: Download, https://pypi.org/project/easypaddleocr
Project-URL: Homepage, https://github.com/pk5ls20/EasyPaddleOCR
Project-URL: Issues, https://github.com/pk5ls20/EasyPaddleOCR/issues
Requires-Python: <3.12,>=3.9
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: shapely
Requires-Dist: scikit-image
Requires-Dist: imgaug
Requires-Dist: pyclipper
Requires-Dist: numpy
Requires-Dist: opencv-python-headless
Requires-Dist: Pillow
Requires-Dist: pyyaml
Requires-Dist: torch
Requires-Dist: torchvision
Requires-Dist: loguru
Requires-Dist: huggingface_hub

# EasyPaddleOCR
A simple, optional tool for **PaddleOCR Detection, direction classification and recognition on CPU and GPU using torch**.

## Usage
```python
import cv2
import numpy as np
from easypaddleocr import EasyPaddleOCR

easyPaddleOCR = EasyPaddleOCR(use_angle_cls=True, needWarmUp=True)
image_path = 'your-picture-filepath'
image_ndarray = np.array(cv2.imread(image_path))
result = easyPaddleOCR.ocr(image_ndarray)
print(result)
```
## Reference
- https://github.com/WenmuZhou/PytorchOCR
- https://github.com/PaddlePaddle/PaddleOCR
- https://github.com/frotms/PaddleOCR2Pytorch

## Additional Notes:
**This repository was originally the Fork of https://github.com/WenmuZhou/PytorchOCR**
