Update pages/02_📙How_it_Works.py
Browse files
pages/02_📙How_it_Works.py
CHANGED
|
@@ -29,11 +29,10 @@ class TeethApp:
|
|
| 29 |
background-color: rgb(255, 255, 255) ;""",
|
| 30 |
unsafe_allow_html=True,
|
| 31 |
)
|
| 32 |
-
|
| 33 |
# Configure Streamlit page
|
| 34 |
st.set_page_config(page_title="Teeth Segmentation", page_icon="ⓘ")
|
| 35 |
|
| 36 |
-
|
| 37 |
class Guide(TeethApp):
|
| 38 |
def __init__(self):
|
| 39 |
TeethApp.__init__(self)
|
|
@@ -42,8 +41,9 @@ class Guide(TeethApp):
|
|
| 42 |
def build_app(self):
|
| 43 |
st.title("More Coming Soon")
|
| 44 |
st.markdown("Made by Huayuan Song for the 10 ECTS 02830 Advanced Project in Digital Media Technology course at the Technical University of Denmark.")
|
| 45 |
-
st.markdown("
|
| 46 |
-
st.markdown("
|
|
|
|
| 47 |
st.image("illu.png")
|
| 48 |
|
| 49 |
if __name__ == "__main__":
|
|
|
|
| 29 |
background-color: rgb(255, 255, 255) ;""",
|
| 30 |
unsafe_allow_html=True,
|
| 31 |
)
|
| 32 |
+
|
| 33 |
# Configure Streamlit page
|
| 34 |
st.set_page_config(page_title="Teeth Segmentation", page_icon="ⓘ")
|
| 35 |
|
|
|
|
| 36 |
class Guide(TeethApp):
|
| 37 |
def __init__(self):
|
| 38 |
TeethApp.__init__(self)
|
|
|
|
| 41 |
def build_app(self):
|
| 42 |
st.title("More Coming Soon")
|
| 43 |
st.markdown("Made by Huayuan Song for the 10 ECTS 02830 Advanced Project in Digital Media Technology course at the Technical University of Denmark.")
|
| 44 |
+
st.markdown("ML backend is based on MeshSegNet architecture by [Lian et al.](https://ieeexplore.ieee.org/abstract/document/8984309).")
|
| 45 |
+
st.markdown("The model has been trained on intra-oral scans of both upper and lower jaws annotated, validated by professionals in the 3DTeethSeg'22 Challenge by [Ben-Hamadou et al.](https://arxiv.org/abs/2305.18277).")
|
| 46 |
+
st.markdown("**Thanks for trying the app out!**")
|
| 47 |
st.image("illu.png")
|
| 48 |
|
| 49 |
if __name__ == "__main__":
|