Update app.py
Browse files
app.py
CHANGED
@@ -31,6 +31,6 @@ def ocr_and_search(image, language):
|
|
31 |
english_text, hindi_text = perform_ocr(image, language)
|
32 |
return english_text, hindi_text
|
33 |
|
34 |
-
#
|
35 |
iface = gr.Interface(fn=ocr_and_search, inputs=["image", "dropdown"], outputs=["text", "text"])
|
36 |
iface.launch()
|
|
|
31 |
english_text, hindi_text = perform_ocr(image, language)
|
32 |
return english_text, hindi_text
|
33 |
|
34 |
+
# Gradio
|
35 |
iface = gr.Interface(fn=ocr_and_search, inputs=["image", "dropdown"], outputs=["text", "text"])
|
36 |
iface.launch()
|