Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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}
|
| 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 |
-
|
|
|
|
| 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 |
|