Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -13,6 +13,12 @@ from PIL import Image
|
|
13 |
|
14 |
subprocess_executed = False
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
# Upload a ZIP file containing DICOM slices
|
17 |
st.write("Upload a ZIP file containing DICOM slices")
|
18 |
uploaded_zip_file = st.file_uploader("Upload a .zip file", type=["zip"])
|
|
|
13 |
|
14 |
subprocess_executed = False
|
15 |
|
16 |
+
logo_image_path = '1.png' # Replace with your logo image path or URL
|
17 |
+
|
18 |
+
# Display the logo at the top of the page
|
19 |
+
st.image(logo_image_path, use_column_width=True)
|
20 |
+
st.title("Automated Abdominal Aortic Aneurysm Detection")
|
21 |
+
|
22 |
# Upload a ZIP file containing DICOM slices
|
23 |
st.write("Upload a ZIP file containing DICOM slices")
|
24 |
uploaded_zip_file = st.file_uploader("Upload a .zip file", type=["zip"])
|