File size: 664 Bytes
18c9167 4f3c848 18c9167 4f3c848 |
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 |
import gradio as gr
import easyocr
# تعريف وظيفة لتحليل النصوص من الصور
def extract_text_from_image(image_path):
reader = easyocr.Reader(['ar', 'en']) # يدعم العربية والإنجليزية
result = reader.readtext(image_path, detail=0)
return " ".join(result)
# إنشاء واجهة باستخدام Gradio
def process_image(image):
text = extract_text_from_image(image)
return text
interface = gr.Interface(
fn=process_image,
inputs=gr.Image(type="filepath"),
outputs="text",
title="استخراج النصوص من الصور"
)
if __name__ == "__main__":
interface.launch()
|