import streamlit as st
	
# Streamlit 網頁介面
st.title('上傳圖檔執行YOLO物體偵測')
source_img = st.file_uploader(
	label = '選擇圖檔...',
	type = ('jpg', 'jpeg', 'png', 'bmp', 'webp')
)