Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -1,41 +1,42 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
|
|
|
1 |
+
---
|
2 |
+
title: OCR Image Upload Application
|
3 |
+
emoji: 📷
|
4 |
+
colorFrom: purple
|
5 |
+
colorTo: green
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: "3.1.4" # Update this to the version you're using
|
8 |
+
app_file: gradio_app.py
|
9 |
+
pinned: false
|
10 |
+
---
|
11 |
+
|
12 |
+
# OCR Image Upload Application
|
13 |
+
|
14 |
+
This application allows users to upload images and extract text from them using Optical Character Recognition (OCR) technology. Users can choose between Hindi and English for text extraction.
|
15 |
+
|
16 |
+
## Features
|
17 |
+
|
18 |
+
- Upload images in various formats (JPEG, PNG, etc.).
|
19 |
+
- Automatically detect and extract text in Hindi or English.
|
20 |
+
- Highlight keywords in the extracted text.
|
21 |
+
- Simple and user-friendly interface using Gradio.
|
22 |
+
|
23 |
+
## Technologies Used
|
24 |
+
|
25 |
+
- **Gradio**: For creating the web interface.
|
26 |
+
- **EasyOCR**: For extracting Hindi text.
|
27 |
+
- **GOT OCR 2.0**: For extracting English text using Hugging Face Transformers.
|
28 |
+
- **Python**: The programming language used for development.
|
29 |
+
|
30 |
+
## Prerequisites
|
31 |
+
|
32 |
+
Ensure you have the following installed:
|
33 |
+
|
34 |
+
- Python 3.7 or higher
|
35 |
+
- pip (Python package installer)
|
36 |
+
|
37 |
+
## Setup Instructions
|
38 |
+
|
39 |
+
1. **Clone the repository**:
|
40 |
+
```bash
|
41 |
+
git clone <repository-url>
|
42 |
+
cd <repository-folder>
|