Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aungkaungpyaepaing/kivy-ocr-app
Making Optical character recognition (OCR) app using Python and Kivy. This project is based on only image processing without any machine learning or deep learning methods.
https://github.com/aungkaungpyaepaing/kivy-ocr-app
kivy-application ocr-text-reader opencv-python pytesseract-ocr threshold
Last synced: 18 days ago
JSON representation
Making Optical character recognition (OCR) app using Python and Kivy. This project is based on only image processing without any machine learning or deep learning methods.
- Host: GitHub
- URL: https://github.com/aungkaungpyaepaing/kivy-ocr-app
- Owner: aungkaungpyaepaing
- Created: 2023-10-08T06:23:08.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-09T18:09:55.000Z (about 1 year ago)
- Last Synced: 2024-12-18T19:09:21.607Z (18 days ago)
- Topics: kivy-application, ocr-text-reader, opencv-python, pytesseract-ocr, threshold
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Kivy OCR app
Developed By Aung Kaung Pyae Paing
Making Optical character recognition (OCR) app using Python and Kivy. This project is based on only image processing without any machine learning or deep learning methods. In order to make the system more accurate, you need to use deep learning methods.
# Require Packages
Python
Kivy
opencv
pytesseract#How to use the system
You just need to run this program in one of the code editors, which I use as Visual Studio code. If you have all the packages, the program will run without a problem.#How this program work
First it will take a picture as soon as "Click Here" button is clicked. Then it is going to tranform the capture image into white by using
After that, it is going to tranform the image using threshold method so that it would be easier to transform into text from image by using pytesseractNote- This project only use image processing method and pytesseract. Based on the image and what you want to do, there could be better way. Normally OCR app use Deep learning methods.