Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
❤️️❤️️Please star✨ it if you like❤️️❤️️
OCR Tamil can help you extract text from signboard, nameplates, storefronts etc., from Natural Scenes with high accuracy. This version of OCR is much more robust to tilted text compared to the Tesseract, Paddle OCR and Easy OCR as they are primarily built to work on the documents texts and not on natural scenes. This model is work in progress, feel free to contribute!!!
➡️ English
➡️ Tamil (தமிழ்)
✔️ English > 98%
✔️ Tamil > 95%
🏎️ 10-40% faster inference time than EasyOCR and Tesseract
🏎️ 10-40% faster inference time than EasyOCR and Tesseract
Input Image | OCR TAMIL 🏆 | Tesseract | EasyOCR |
---|---|---|---|
வாழ்கவளமுடன்✅ | க் க்கஸாரகளள௮ஊகஎளமுடன் ❌ | வாழக வளமுடன்❌ | |
தமிழ்வாழ்க✅ | NO OUTPUT ❌ | தமிழ்வாழ்க✅ | |
கோபி ✅ | NO OUTPUT ❌ | ப99❌ | |
தாம்பரம் ✅ | NO OUTPUT ❌ | தாம்பரம❌ | |
நெடுஞ்சாலைத் ✅ | NO OUTPUT ❌ | நெடுஞ்சாலைத் ✅ | |
அண்ணாசாலை ✅ | NO OUTPUT ❌ | ல@I9❌ | |
ரெடிமேட்ஸ் ✅ | NO OUTPUT ❌ | ரெடிமேடஸ் ❌ |
Obtained Tesseract and EasyOCR results using the Colab notebook with Tamil and english as language
MODEL OUTPUT: நிமிர்ந்த நன்னடை மேற்கொண்ட பார்வையும்
நிலத்தில் யார்க் கும் அஞ்சாத நெறிகளும்
திமிர்ந்த ஞானச் செருக்கும் இருப்பதால்
செம்மை மாதர் திறம்புவ தில்லையாம்
அமிழ்ந்து பேரிரு ளாமறி யாமையில்
அவல மெய்திக் கலையின் வாழ்வதை
உமிழ்ந்து தள்ளுதல் பெண்ணற மாகுமாம்
உதய கன்ன உரைப்பது கேட்டிரோ
பாரதியார்
ஹேமந்த் ம
📔 Detailed explanation on Medium article.
✍️ Experiment in Colab notebook
🤗 Test it in Huggingface spaces
In your command line, run the following command pip install ocr_tamil
If you are using jupyter notebook , install like !pip install ocr_tamil
Text Recognition only
from ocr_tamil.ocr import OCR
image_path = r"test_images\1.jpg" # insert your own path here
ocr = OCR()
text_list = ocr.predict(image_path)
print(text_list[0])
## OUTPUT : நெடுஞ்சாலைத்
Text Detect + Recognition
from ocr_tamil.ocr import OCR
image_path = r"test_images\0.jpg" # insert your own image path here
ocr = OCR(detect=True)
texts = ocr.predict(image_path)
print(" ".join(text_list[0]))
## OUTPUT : கொடைக்கானல் Kodaikanal
Text Recognition only
from ocr_tamil.ocr import OCR
image_path = [r"test_images\1.jpg",r"test_images\2.jpg"] # insert your own image paths here
ocr = OCR()
text_list = ocr.predict(image_path)
for text in text_list:
print(text)
## OUTPUT : நெடுஞ்சாலைத்
## OUTPUT : கோபி
Text Detect + Recognition
from ocr_tamil.ocr import OCR
image_path = [r"test_images\0.jpg",r"test_images\tamil_sentence.jpg"] # insert your own image paths here
ocr = OCR(detect=True)
text_list = ocr.predict(image_path)
for item in text_list:
print(" ".join(item))
## OUTPUT : கொடைக்கானல் Kodaikanal
## OUTPUT : செரியர் யற்கை மூலிகைகளில் இருந்து ஈர்த்தெடுக்க்கப்பட்ட வீரிய உட்பொருட்களை உள்ளடக்கி எந்த இரசாயன சேர்க்கைகளும் இல்லாமல் உருவாக்கப்பட்ட இந்தியாவின் முதல் சித்த தயாரிப்பு
OCR module can be initialized by setting following parameters as per your requirements
1. Confidence of word -> OCR(details=1)
2. Bounding Box and Confidence of word -> OCR(detect=True,details=2)
3. To change the CRAFT Text detection settings -> OCR(detect=True,text_threshold=0.5,
link_threshold=0.1,
low_text=0.30)
4. To increase the Batch size of text recognition -> OCR(batch_size=16) # set as per available memory
5. To configure the language to be extracted -> OCR(lang=["tamil"]) # list can take "english" or "tamil" or both. Defaults to both language
Tested using Python 3.10 on Windows & Linux (Ubuntu 22.04) Machines
Currently supports Only English and Tamil Language
Document Text reading capability is limited. Auto identification of Paragraph, reading order are not supported along with Text detection model inability to detect and crop the Tamil text leads to accuracy decrease (WORKAROUND Can use your own text detection model along with OCR tamil text recognition model)
Cropped Text from Text detection Model
Character **இ** missing due to text detection model error
**?**யற்கை மூலிகைகளில் இருந்து ஈர்த்தெடுக்கக்கப்பட்ட வீரிய உட்பொருட்களை உள்ளடக்கி எந்த இரசாயன சேர்க்கைகளும் இல்லாமல் உருவாக்கப்பட்ட இந்தியாவின் முதல் சித்த தயாரிப்பு
Text detection - CRAFT TEXT DECTECTION
Text recognition - PARSEQ
@InProceedings{bautista2022parseq,
title={Scene Text Recognition with Permuted Autoregressive Sequence Models},
author={Bautista, Darwin and Atienza, Rowel},
booktitle={European Conference on Computer Vision},
pages={178--196},
month={10},
year={2022},
publisher={Springer Nature Switzerland},
address={Cham},
doi={10.1007/978-3-031-19815-1_11},
url={https://doi.org/10.1007/978-3-031-19815-1_11}
}
@inproceedings{baek2019character,
title={Character Region Awareness for Text Detection},
author={Baek, Youngmin and Lee, Bado and Han, Dongyoon and Yun, Sangdoo and Lee, Hwalsuk},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
pages={9365--9374},
year={2019}
}
@InProceedings{GnanaPrasath,
title={Tamil OCR},
author={Gnana Prasath D},
month={01},
year={2024},
url={https://github.com/gnana70/tamil_ocr}
}
FAQs
Python Tamil OCR package
We found that ocr-tamil demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.