Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,24 @@
|
|
1 |
import streamlit as st
|
2 |
import pydicom
|
|
|
3 |
import zipfile
|
4 |
import os
|
5 |
import subprocess
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
subprocess_executed = False
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
# Function to install dependencies
|
10 |
@st.cache_resource
|
11 |
def install_dependencies():
|
|
|
1 |
import streamlit as st
|
2 |
import pydicom
|
3 |
+
import matplotlib.pyplot as plt
|
4 |
import zipfile
|
5 |
import os
|
6 |
import subprocess
|
7 |
+
from datetime import datetime
|
8 |
+
import shutil
|
9 |
+
import moviepy.video.io.ImageSequenceClip
|
10 |
+
from io import BytesIO
|
11 |
+
from tkinter import Tcl
|
12 |
+
from PIL import Image
|
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, width=150)
|
20 |
+
st.title("Automated Abdominal Aortic Aneurysm Detection")
|
21 |
+
|
22 |
# Function to install dependencies
|
23 |
@st.cache_resource
|
24 |
def install_dependencies():
|