Spaces:
Runtime error
Runtime error
File size: 1,725 Bytes
e5b2856 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
from glob import glob
import os
from timeit import default_timer as timer
import gradio as gr
import numpy as np
import onnxruntime as ort
from PIL import ImageOps
from utils import draw_overlay
sessions = {
"rtdetr_18vd": ort.InferenceSession("models/rtdetr_r18vd.onnx"),
"rtdetr_r50vd": ort.InferenceSession("models/rtdetr_r50vd.onnx"),
"rtdetr_r101vd": ort.InferenceSession("models/rtdetr_r101vd.onnx"),
}
def run(image, threshold=0.5, model="rtdetr_18vd"):
im = ImageOps.pad(image, (640, 640), color="black")
input = np.asarray(im)
input = np.transpose(input, (2, 0, 1))
input = np.expand_dims(input, axis=0)
input = input.astype(np.float32) / 255
inference_start = timer()
labels, boxes, scores = sessions[model].run(
None,
{"images": input, "orig_target_sizes": np.array([[640, 640]])},
)
inference_seconds = timer() - inference_start
draw_overlay(im, threshold, labels, boxes, scores)
return im, labels[0], boxes[0], scores[0], inference_seconds * 1000
demo = gr.Interface(
run,
inputs=[
gr.Image(type="pil", label="image"),
gr.Slider(0, 1, 0.5, label="score threshold"),
gr.Dropdown(
["rtdetr_18vd", "rtdetr_r50vd", "rtdetr_r101vd"],
value="rtdetr_18vd",
label="model",
),
],
outputs=[
gr.Image(label="result"),
gr.Textbox(label="labels"),
gr.Textbox(label="boxes"),
gr.Textbox(label="scores"),
gr.Textbox(label="inference ms"),
],
examples=[glob(os.path.join("samples", "*"))],
title="RT-DETR",
description="ONNX exported from official pretrained models on COCO + Objects365",
)
demo.launch()
|