Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import cv2
|
3 |
+
import numpy as np
|
4 |
+
from ultralytics import YOLO
|
5 |
+
|
6 |
+
model = YOLO('best (7).pt')
|
7 |
+
|
8 |
+
def predict_image(img):
|
9 |
+
|
10 |
+
model = YOLO('best (6).pt')
|
11 |
+
result = model.predict(img,conf=0.97)
|
12 |
+
res_plotted = result[0].plot()
|
13 |
+
#cv2.imshow( res_plotted)
|
14 |
+
return res_plotted
|
15 |
+
|
16 |
+
|
17 |
+
|
18 |
+
image = gr.inputs.Image()
|
19 |
+
|
20 |
+
label = gr.outputs.Label('ok')
|
21 |
+
gr.Interface(fn=predict_image, inputs=image, outputs=image).launch(debug='True')
|