import io import gradio as gr import matplotlib.pyplot as plt import requests, validators import torch import pathlib from PIL import Image from transformers import AutoFeatureExtractor, YolosForObjectDetection, DetrForObjectDetection import os os.environ["KMP_DUPLICATE_LIB_OK"]="TRUE" # colors for visualization COLORS = [ [0.000, 0.447, 0.741], [0.850, 0.325, 0.098], [0.929, 0.694, 0.125], [0.494, 0.184, 0.556], [0.466, 0.674, 0.188], [0.301, 0.745, 0.933] ] import numpy as np import tensorflow as tf # Load EV plate classifier ev_model = tf.keras.models.load_model("plate_color_model.h5") def is_green_plate(plate_img): plate_img = plate_img.resize((128,128)) plate_img = np.array(plate_img)/255.0 plate_img = np.expand_dims(plate_img, axis=0) pred = ev_model.predict(plate_img)[0][0] return pred > 0.5 def make_prediction(img, feature_extractor, model): inputs = feature_extractor(img, return_tensors="pt") outputs = model(**inputs) img_size = torch.tensor([tuple(reversed(img.size))]) processed_outputs = feature_extractor.post_process(outputs, img_size) return processed_outputs[0] def fig2img(fig): buf = io.BytesIO() fig.savefig(buf) buf.seek(0) pil_img = Image.open(buf) basewidth = 750 wpercent = (basewidth/float(pil_img.size[0])) hsize = int((float(pil_img.size[1])*float(wpercent))) img = pil_img.resize((basewidth,hsize), Image.Resampling.LANCZOS) return img def visualize_prediction(img, output_dict, threshold=0.5, id2label=None): boxes = output_dict["boxes"].tolist() scores = output_dict["scores"].tolist() labels = output_dict["labels"].tolist() if id2label is not None: labels = [id2label[x] for x in labels] plt.figure(figsize=(20, 20)) plt.imshow(img) ax = plt.gca() colors = COLORS * 100 for score, (xmin, ymin, xmax, ymax), label, color in zip(scores, boxes, labels, colors): if score < threshold: continue if label in ["license-plates", "Rego Plates"]: plate_crop = img.crop((xmin, ymin, xmax, ymax)) ev = is_green_plate(plate_crop) if ev: plate_type = "EV (Green Plate)" box_color = "green" else: plate_type = "Non-EV Plate" box_color = "red" else: plate_type = label box_color = "blue" ax.add_patch( plt.Rectangle((xmin, ymin), xmax - xmin, ymax - ymin, fill=False, color=box_color, linewidth=3) ) ax.text( xmin, ymin - 10, f"{plate_type} | {score:.2f}", fontsize=14, bbox=dict(facecolor=box_color, alpha=0.7), color="white" ) plt.axis("off") return fig2img(plt.gcf()) def get_original_image(url_input): if validators.url(url_input): image = Image.open(requests.get(url_input, stream=True).raw) return image def detect_objects(model_name,url_input,image_input,webcam_input,threshold): #Extract model and feature extractor feature_extractor = AutoFeatureExtractor.from_pretrained(model_name) if "yolos" in model_name: model = YolosForObjectDetection.from_pretrained(model_name) elif "detr" in model_name: model = DetrForObjectDetection.from_pretrained(model_name) if validators.url(url_input): image = get_original_image(url_input) elif image_input: image = image_input elif webcam_input: image = webcam_input #Make prediction processed_outputs = make_prediction(image.convert("RGB"), feature_extractor, model) #Visualize prediction viz_img = visualize_prediction(image, processed_outputs, threshold, model.config.id2label) return viz_img def set_example_image(example: list) -> dict: return gr.Image.update(value=example[0]) def set_example_url(example: list) -> dict: return gr.Textbox.update(value=example[0]), gr.Image.update(value=get_original_image(example[0])) title = """