File size: 569 Bytes
5752493
 
 
 
 
a620eaa
5752493
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from PIL import Image,ImageDraw,ImageFont
import numpy as np
from ultralytics import YOLO
import streamlit as st

model = YOLO('VehicleDetection.pt')
img = st.file_uploader('Choose an Image')

if img is not None:
    img = Image.open(img).resize((640,640)).convert('RGB')
    results = model(img)
    for result in results:
        for i in range(len(result.boxes.cls)):
          boxes = result.boxes.xyxy[i]
          draw = ImageDraw.Draw(img)
          draw.rectangle([boxes[0], boxes[1], boxes[2], boxes[3]], outline="black", width=5)

    st.image(img,'Detected')