Spaces:
Sleeping
Sleeping
gizemsarsinlar
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -3,8 +3,11 @@ from PIL import Image
|
|
3 |
import gradio as gr
|
4 |
import cv2
|
5 |
import numpy as np
|
|
|
6 |
|
7 |
def select_roi_and_ocr(filepath: str):
|
|
|
|
|
8 |
# Görseli yükle
|
9 |
image = cv2.imread(filepath)
|
10 |
image_rgb = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) # Gradio ile uyumlu hale getirmek için
|
|
|
3 |
import gradio as gr
|
4 |
import cv2
|
5 |
import numpy as np
|
6 |
+
import os
|
7 |
|
8 |
def select_roi_and_ocr(filepath: str):
|
9 |
+
if not os.path.exists(filepath):
|
10 |
+
return "Dosya mevcut değil. Lütfen tekrar yükleyin."
|
11 |
# Görseli yükle
|
12 |
image = cv2.imread(filepath)
|
13 |
image_rgb = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) # Gradio ile uyumlu hale getirmek için
|