ahmedxeno commited on
Commit
fe8d4b1
·
1 Parent(s): 6a2e482

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -0
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')