https://github.com/rahulbhoyar1995/image-text-extraction
A project utilizing the Tesseract OCR library to extract text from images. Includes image preprocessing, text extraction, and result visualization for various image formats.
https://github.com/rahulbhoyar1995/image-text-extraction
computer-vision image-processing python3
Last synced: 10 months ago
JSON representation
A project utilizing the Tesseract OCR library to extract text from images. Includes image preprocessing, text extraction, and result visualization for various image formats.
- Host: GitHub
- URL: https://github.com/rahulbhoyar1995/image-text-extraction
- Owner: rahulbhoyar1995
- Created: 2024-06-25T05:11:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-25T05:15:00.000Z (almost 2 years ago)
- Last Synced: 2025-01-15T23:25:31.261Z (over 1 year ago)
- Topics: computer-vision, image-processing, python3
- Language: Python
- Homepage:
- Size: 120 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Image Text Extraction
### Author : Rahul Bhoyar
#### Steps :
**How to install tesseract on iOS Macbook?**
Tesseract OCR can be installed on a Macbook running iOS using the following steps:
Install Homebrew: Homebrew is a package manager for macOS that makes it easy to install and manage software. To install Homebrew, open Terminal and run the following command:
```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
```
Install Tesseract: Once you have Homebrew installed, you can use it to install Tesseract by running the following command in Terminal:
```
brew install tesseract
```
This will download and install the latest version of Tesseract OCR on your Macbook.
Verify Installation:
To verify that Tesseract is installed correctly, run the following command in Terminal:
```
tesseract -v
```
This should print the version of Tesseract that is installed on your system.
Now that Tesseract is installed, you can use it in combination with the Python pytesseract library to extract text from images.