abhicodes commited on
Commit
4a1f0e8
·
1 Parent(s): 1665bd5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -27
app.py CHANGED
@@ -2,49 +2,32 @@ import cv2
2
  import easyocr
3
  import gradio as gr
4
  import base64
5
- import json
6
 
7
- def text_extraction(image):
8
- # Convert base64 image to OpenCV format
9
- image = base64.b64decode(image.split(",")[1])
10
- nparr = np.frombuffer(image, np.uint8)
11
- img = cv2.imdecode(nparr, cv2.IMREAD_COLOR)
12
-
13
- # Instance text detector
14
- reader = easyocr.Reader(['en'], gpu=False)
15
 
16
- # Detect text on image
17
- text_ = reader.readtext(img)
18
 
19
  threshold = 0.25
20
- # Draw bbox and text
21
  for t_, t in enumerate(text_):
22
  bbox, text, score = t
23
 
24
  if score > threshold:
25
- cv2.rectangle(img, tuple(map(int, bbox[0])), tuple(map(int, bbox[2])), (255, 0, 0), 2)
26
 
27
- # Encode image to base64
28
- retval, buffer = cv2.imencode('.jpg', img)
29
  img_base64 = base64.b64encode(buffer).decode('utf-8')
30
 
31
- # Create JSON response
32
- response_json = {
33
- 'annotated_image_base64': img_base64,
34
- 'text_data': text_
35
- }
36
-
37
- # Convert the dictionary to a JSON string
38
- response_json_str = json.dumps(response_json, default=str)
39
-
40
- return response_json_str
41
 
42
  # Define Gradio interface
43
  iface = gr.Interface(
44
  fn=text_extraction,
45
  inputs=gr.Image(),
46
- outputs=["image", "json"]
47
  )
48
 
49
  # Launch the Gradio interface
50
- iface.launch()
 
2
  import easyocr
3
  import gradio as gr
4
  import base64
 
5
 
6
+ # Instance text detector
7
+ reader = easyocr.Reader(['en'], gpu=False)
 
 
 
 
 
 
8
 
9
+ def text_extraction(image):
10
+ text_ = reader.readtext(image)
11
 
12
  threshold = 0.25
13
+ # draw bbox and text
14
  for t_, t in enumerate(text_):
15
  bbox, text, score = t
16
 
17
  if score > threshold:
18
+ cv2.rectangle(image, tuple(map(int, bbox[0])), tuple(map(int, bbox[2])), (255, 0, 0), 2)
19
 
20
+ retval, buffer = cv2.imencode('.jpg', image)
 
21
  img_base64 = base64.b64encode(buffer).decode('utf-8')
22
 
23
+ return img_base64
 
 
 
 
 
 
 
 
 
24
 
25
  # Define Gradio interface
26
  iface = gr.Interface(
27
  fn=text_extraction,
28
  inputs=gr.Image(),
29
+ outputs=["image"]
30
  )
31
 
32
  # Launch the Gradio interface
33
+ iface.launch()