-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
69 lines (58 loc) · 1.78 KB
/
app.py
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
63
64
65
66
67
68
69
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pathlib import Path
from PIL import Image
import streamlit as st
import config
from utils import load_model, infer_uploaded_image, infer_uploaded_video, infer_uploaded_webcam
# setting page layout
st.set_page_config(
page_title="Interactive Interface for YOLOv8",
page_icon="🤖",
layout="wide",
initial_sidebar_state="expanded"
)
# main page heading
st.title("基于YOLOV8的火灾检测系统")
# sidebar
st.sidebar.header("模型配置")
# model options
task_type = st.sidebar.selectbox(
"选择要进行的任务",
["Detection"]
)
model_type = None
if task_type == "Detection":
model_type = st.sidebar.selectbox(
"选取模型",
config.DETECTION_MODEL_LIST
)
else:
st.error("Currently only 'Detection' function is implemented")
confidence = float(st.sidebar.slider(
"选取最小置信度", 30, 100, 50)) / 100
model_path = ""
if model_type:
model_path = Path(config.DETECTION_MODEL_DIR, str(model_type))
else:
st.error("Please Select Model in Sidebar")
# load pretrained DL model
try:
model = load_model(model_path)
except Exception as e:
st.error(f"Unable to load model. Please check the specified path: {model_path}")
# image/video options
st.sidebar.header("图片/视频配置")
source_selectbox = st.sidebar.selectbox(
"选取文件类型",
config.SOURCES_LIST
)
source_img = None
if source_selectbox == config.SOURCES_LIST[0]: # Image
infer_uploaded_image(confidence, model)
elif source_selectbox == config.SOURCES_LIST[1]: # Video
infer_uploaded_video(confidence, model)
elif source_selectbox == config.SOURCES_LIST[2]: # Webcam
infer_uploaded_webcam(confidence, model)
else:
st.error("Currently only 'Image' and 'Video' source are implemented")