lhofstetter commited on
Commit
eba119e
·
verified ·
1 Parent(s): f1a8e70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -8,7 +8,7 @@ model_emoji = '⚙️'
8
  profile_emoji = '📈'
9
  st.title('PantoScan')
10
 
11
- tab1, tab2, tab3 = st.tabs([f'{image_emoji} Image', f'{model_emoji} Mask', f'{profile_emoji} Measurement'])
12
 
13
  with tab1:
14
  st.header(f'Source Image')
@@ -21,6 +21,7 @@ with tab2:
21
 
22
  with tab3:
23
  st.header(f'Profile Height')
24
- #st.image("https://static.streamlit.io/examples/owl.jpg", width=200)
 
25
 
26
 
 
8
  profile_emoji = '📈'
9
  st.title('PantoScan')
10
 
11
+ tab1, tab2, tab3 = st.tabs([f' {image_emoji} Image', f' {model_emoji} Mask', f' {profile_emoji} Measurement'])
12
 
13
  with tab1:
14
  st.header(f'Source Image')
 
21
 
22
  with tab3:
23
  st.header(f'Profile Height')
24
+ data = np.random.randn(10, 1)
25
+ st.line_chart(data)
26
 
27