import time import requests from io import BytesIO from dataclasses import dataclass import numpy as np import pandas as pd from PIL import Image import yolov5 from yolov5.utils.plots import Annotator, colors import gradio as gr from huggingface_hub import get_token def load_model(model_path, img_size=640): """Load model from HuggingFace Hub.""" model = yolov5.load(model_path, hf_token=get_token()) model.img_size = img_size # add img_size attribute return model def load_image_from_url(url): """Load image from URL.""" if not url: # empty or None return gr.Image(interactive=True) try: response = requests.get(url, timeout=5) image = Image.open(BytesIO(response.content)) except Exception as e: raise gr.Error("Unable to load image from URL") from e return image.convert("RGB") def inference(model, image): """Run inference on image and return annotated image.""" results = model(image, size=model.img_size) annotator = Annotator(np.asarray(image)) for *box, _, cls in reversed(results.pred[0]): # label = f'{model.names[int(cls)]} {conf:.2f}' # print(f'{cls} {conf:.2f} {box}') annotator.box_label(box, "", color=colors(cls, True)) return annotator.im def load_badges(n): """Load badges.""" return f"""