Rename Introduction.py to ⓘ_Introduction.py
Browse files
Introduction.py → ⓘ_Introduction.py
RENAMED
|
@@ -33,8 +33,17 @@ class TeethApp:
|
|
| 33 |
# Configure Streamlit page
|
| 34 |
st.set_page_config(page_title="Teeth Segmentation", page_icon="ⓘ")
|
| 35 |
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
# Configure Streamlit page
|
| 34 |
st.set_page_config(page_title="Teeth Segmentation", page_icon="ⓘ")
|
| 35 |
|
| 36 |
+
class Intro(TeethApp):
|
| 37 |
+
def __init__(self):
|
| 38 |
+
TeethApp.__init__(self)
|
| 39 |
+
self.build_app()
|
| 40 |
+
|
| 41 |
+
def build_app(self):
|
| 42 |
+
st.title("AI-assited Tooth Segmentation")
|
| 43 |
+
st.markdown("This app automatically segments intra-oral scans of teeth using machine learning.")
|
| 44 |
+
st.markdown("Head to the 'Segment' tab to try it out!")
|
| 45 |
+
st.markdown("**Example:**")
|
| 46 |
+
st.image("illu.png")
|
| 47 |
+
|
| 48 |
+
if __name__ == "__main__":
|
| 49 |
+
app = Intro()
|