hand_fractures / app.py
ahmedxeno's picture
Rename app (2).py to app.py
b80c1bf
raw
history blame contribute delete
428 Bytes
import gradio as gr
import cv2
import numpy as np
from ultralytics import YOLO
model = YOLO('best (6).pt')
def predict_image(img):
model = YOLO('best (6).pt')
result = model.predict(img)
res_plotted = result[0].plot()
#cv2.imshow( res_plotted)
return res_plotted
image = gr.inputs.Image()
label = gr.outputs.Label('ok')
gr.Interface(fn=predict_image, inputs=image, outputs=image).launch(debug='True')