huathedev commited on
Commit
07dae79
·
1 Parent(s): c475e82

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
- st.title("AI-assited Tooth Segmentation")
37
- st.markdown("This app automatically segments intra-oral scans of teeth using machine learning.")
38
- st.markdown("Head to the 'Segment' tab to try it out!")
39
- st.markdown("**Example:**")
40
- st.image("illu.png")
 
 
 
 
 
 
 
 
 
 
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()