Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kocarus/manga-translator-tesseractocr

Automatically translates manga pages with Tesseract-OCR and Google Translate API for Python
https://github.com/kocarus/manga-translator-tesseractocr

google-translate-api manga ocr opencv-python pytesseract python27 tesseract-ocr translator

Last synced: 1 day ago
JSON representation

Automatically translates manga pages with Tesseract-OCR and Google Translate API for Python

Awesome Lists containing this project

README

        

# Manga Translator
Automatically translates manga pages from Japanese to English. So keep finding RAW as many as possible and enjoy :sunglasses:

# Dependencies
- Python 2.7 (using Python 3.x might lead to some Unicode conflict)
- [Tesseract](https://github.com/tesseract-ocr/tesseract)
- [OpenCV with Python wrapper](https://pypi.org/project/opencv-python/)
- [Google Translate API for Python](https://pypi.org/project/googletrans/)
- [Pytesseract](https://pypi.python.org/pypi/pytesseract)
- NumPy, SciPy, some other Python packages (**[PyCharm](https://www.jetbrains.com/pycharm/) is highly recommended for auto detect missing packages**)

# Steps
- Add your images in ascending order into "**img**" folder and then create a new folder named "**translated**" in the repo
![addImg](https://i.imgur.com/9ZylP1I.png)

- Run **manga_translate.py** to extract texts and perform translation
![run](https://i.imgur.com/WevvTVk.png)

# Result
![op](https://i.imgur.com/ieTPgxM.png)

![karada](https://i.imgur.com/xf0BNDm.jpg)

# Original code
https://github.com/dalelyunas/manga-translator (Great code. I have modified a bit and this is beautiful for Manga Lovers :grin:)