Spaces:
Sleeping
Sleeping
File size: 606 Bytes
8d96f41 092313a 0d85e45 8d96f41 30146e4 0d85e45 8d96f41 b3bf7fa 0d6b2e0 8d96f41 0d6b2e0 d3a7688 0d85e45 8d96f41 d3a7688 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
from PIL import Image
from ultralytics import YOLO
import gradio as gr
# Cargar un modelo YOLOv8n preentrenado
model = YOLO('best.pt')
def detect_objects(image: Image.Image):
# Realizar la inferencia
results = model.predict(image)
# Obtener los resultados y el texto de descripción
description = ""
for r in results:
im_array = r.plot() # plot a BGR numpy array of predictions
im = Image.fromarray(im_array[..., ::-1]) # Convertir a imagen RGB
return im
# Crear la interfaz de Gradio
gr.Interface(fn=detect_objects, inputs="image", outputs="image").launch()
|