Spaces:
Runtime error
Runtime error
File size: 1,011 Bytes
9419682 |
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 |
import streamlit as st
import numpy as np
from ultralytics import YOLO
from PIL import Image
import supervision as sv
model = YOLO('best.pt')
mask_annotator = sv.MaskAnnotator()
box_annontator = sv.BoxAnnotator()
st.title("Yolov8 Solar Panel Segmentation")
uploaded_file = st.file_uploader("Upload an image", type=["png", "jpg", "jpeg"], accept_multiple_files=False)
if uploaded_file is not None:
image = Image.open(uploaded_file).convert('RGB')
image_arr = np.array(image)
result = model.predict(image)[0] # Use `image` because of RGB to BGR conversion
detections = sv.Detections.from_ultralytics(result)
labels = [
f"solar panel {confidence:0.2f}"
for _, _, confidence, _, _
in detections
]
annotated_image = mask_annotator.annotate(image_arr, detections)
annotated_image = box_annontator.annotate(annotated_image, detections, labels=labels)
st.image(annotated_image, caption='Uploaded Image.', use_column_width=True)
|