Spaces:
Sleeping
Sleeping
File size: 566 Bytes
39debef 8ed86f2 3cf084f 8ed86f2 3cf084f 8ed86f2 9377044 cf4de60 931429b cf4de60 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import streamlit as st
st.set_page_config(
page_title="P&ID Object Detection ",
layout="wide",
initial_sidebar_state="expanded"
)
st.title('P&ID Object Detection App')
st.subheader('Powerful tool to identify valves and pumps', divider='rainbow')
st.caption('Developed by Deep Drawings Co.')
st.write('##')
with st.expander("Usage"):
st.markdown(
'''
1. Upload your P&ID or select example drawings
2. Set confidence threshold
3. Press to perform prediction π
4. Visualize output results
'''
) |