detection / src /streamlit_app.py
karthikmn's picture
Update src/streamlit_app.py
7a1ac1e verified
raw
history blame contribute delete
318 Bytes
import streamlit as st
pages = [
st.Page("home.py", title="Home", icon="๐Ÿ "),
st.Page("detect.py", title="Real-Time License Plate Detection", icon="๐Ÿš˜"),
st.Page("refine.py", title="Refine Image for Detection", icon="๐Ÿ–ผ๏ธ")
]
nav = st.navigation(pages, position="sidebar", expanded=False)
nav.run()