Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,21 @@ from tkinter import Tcl
|
|
15 |
subprocess_executed = False
|
16 |
|
17 |
# Streamlit app title
|
18 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
# Upload a ZIP file containing DICOM slices
|
21 |
uploaded_zip_file = st.file_uploader("Upload a ZIP file containing DICOM slices", type=["zip"])
|
|
|
15 |
subprocess_executed = False
|
16 |
|
17 |
# Streamlit app title
|
18 |
+
st.markdown(
|
19 |
+
"""
|
20 |
+
<style>
|
21 |
+
.reportview-container {
|
22 |
+
background: url("https://media.istockphoto.com/id/1078217402/photo/3d-illustration-of-a-constricted-and-narrowed-artery-and-the-blood-cannot-flow-properly.jpg?s=612x612&w=0&k=20&c=RiKmxxHSr8WjHHz4nHIuVtdYmzYSp6NfDev2lPbgEWU=") no-repeat center center fixed;
|
23 |
+
background-size: cover;
|
24 |
+
}
|
25 |
+
</style>
|
26 |
+
""",
|
27 |
+
unsafe_allow_html=True,
|
28 |
+
)
|
29 |
+
|
30 |
+
# Title with superscript and subtitle
|
31 |
+
st.title("A<sup>4</sup>")
|
32 |
+
st.markdown("Automated Aorta Segmentation and Measurement")
|
33 |
|
34 |
# Upload a ZIP file containing DICOM slices
|
35 |
uploaded_zip_file = st.file_uploader("Upload a ZIP file containing DICOM slices", type=["zip"])
|