Update app.py
Browse files
app.py
CHANGED
|
@@ -30,16 +30,16 @@ def response2(image: gr.Image = None,image_size: gr.Slider = 640, conf_threshold
|
|
| 30 |
|
| 31 |
render = render_result(model=model, image=image, result=results[0], rect_th = 1, text_th = 1)
|
| 32 |
|
| 33 |
-
text = ""
|
| 34 |
|
| 35 |
-
for r in results:
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
|
| 42 |
-
|
| 43 |
|
| 44 |
return render,text
|
| 45 |
|
|
|
|
| 30 |
|
| 31 |
render = render_result(model=model, image=image, result=results[0], rect_th = 1, text_th = 1)
|
| 32 |
|
| 33 |
+
text = "success"
|
| 34 |
|
| 35 |
+
# for r in results:
|
| 36 |
+
# conf = r.boxes.conf
|
| 37 |
+
# cls = r.boxes.cls
|
| 38 |
+
# xywh = int(r.boxes.xywh)
|
| 39 |
+
# x = xywh[0]
|
| 40 |
+
# y = xywh[1]
|
| 41 |
|
| 42 |
+
# text += (f"Detected {cls} with confidence {conf} at \n")
|
| 43 |
|
| 44 |
return render,text
|
| 45 |
|