|
import gradio as gr |
|
import os |
|
import torch |
|
from PIL import Image |
|
|
|
|
|
|
|
|
|
'''gdd.download_file_from_google_drive(file_id='1xJcr1zuuoC6bbu6wGvmyw5dl0mUEi-Jn', |
|
dest_path='content/train_data.zip', |
|
unzip=True) |
|
gdd.download_file_from_google_drive(file_id='1UJ9Y2mw2KBRY0tO-TnBs5RALLya6C2dW', |
|
dest_path='content/video.zip', |
|
unzip=True) ''' |
|
|
|
|
|
def find(name, path): |
|
for root, dirs, files in os.walk(path): |
|
if name in files: |
|
return os.path.join(root, name) |
|
|
|
model = torch.hub.load('ultralytics/yolov5', 'custom', path='Content/best.pt') |
|
model.conf = 0.33 |
|
|
|
def detect(inp): |
|
|
|
|
|
results = model(inp,size=640) |
|
results.render() |
|
return Image.fromarray(results.imgs[0]) |
|
|
|
|
|
inp = gr.inputs.Image(type='pil', label="Original Image") |
|
output = gr.outputs.Image(type="pil", label="Output Image") |
|
|
|
|
|
io=gr.Interface(fn=detect, inputs=inp, outputs=output, title='Party Symbol Detection',examples=['Content/4.jpg']) |
|
io.launch(debug=True,share=True) |
|
|
|
|
|
|
|
|
|
|