Metadata-Version: 2.4
Name: actscene-ocr
Version: 0.1.0
Summary: Actscene OCR: 日本語書類向けの包括的OCRパイプライン (PaddleOCRベース)
Author-email: Actscene <dev@actscene.example>
License: MIT
Keywords: OCR,PaddleOCR,Japanese,Document,actscene
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Image Recognition
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: paddlepaddle>=2.5.0; platform_system != "Darwin" or platform_machine != "arm64"
Requires-Dist: paddleocr>=2.7.0
Requires-Dist: numpy>=1.24
Requires-Dist: opencv-python-headless>=4.8
Requires-Dist: Pillow>=9.5
Dynamic: license-file

# actscene-ocr

日本語の各種書類向けに最適化した OCR ライブラリ

## インストール

```
pip install actscene-ocr
```

## 使い方

```python
from actscene_ocr import ActsceneOCR

ocr = ActsceneOCR()
result = ocr.inkan("/path/to/image.jpg")
print(result)  # {"氏名": "...", "住所": "..."}
```

## ライセンス

MIT
