Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -64,33 +64,28 @@ def fetch_outputs():
|
|
64 |
subdirectory_path = os.path.join(outputs_directory, first_subdirectory)
|
65 |
temp_dicom_dir_path = os.path.join(subdirectory_path, "temp_dicom_dir")
|
66 |
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
st.image(image_path, use_column_width=True)
|
90 |
-
else:
|
91 |
-
st.error("Output files not found")
|
92 |
-
else:
|
93 |
-
st.error("DICOM folder not found")
|
94 |
else:
|
95 |
st.warning("Output files not found")
|
96 |
else:
|
|
|
64 |
subdirectory_path = os.path.join(outputs_directory, first_subdirectory)
|
65 |
temp_dicom_dir_path = os.path.join(subdirectory_path, "temp_dicom_dir")
|
66 |
|
67 |
+
for root, dirs, _ in os.walk(temp_dicom_dir_path):
|
68 |
+
for subdir in dirs:
|
69 |
+
dicom_folder_path = os.path.join(root, subdir)
|
70 |
+
video_path = search_file(dicom_folder_path, "aaa.mp4")
|
71 |
+
if video_path: # Use this folder if it contains the mp4 file
|
72 |
+
image_path = search_file(dicom_folder_path, "diameter_graph.png")
|
73 |
+
largest_slice = search_file(dicom_folder_path, "out.png")
|
74 |
+
|
75 |
+
if video_path and image_path and largest_slice:
|
76 |
+
zip_filename = os.path.join("/home/user/app/C2C/temp_dicom_dir", "outputs.zip")
|
77 |
+
zip_and_download(dicom_folder_path, zip_filename)
|
78 |
+
|
79 |
+
st.title("Largest Slice")
|
80 |
+
st.image(largest_slice, use_column_width=True)
|
81 |
+
|
82 |
+
st.title("Video")
|
83 |
+
st.video(video_path, format="video/mp4")
|
84 |
+
|
85 |
+
st.title("Diameter Graph")
|
86 |
+
st.image(image_path, use_column_width=True)
|
87 |
+
return
|
88 |
+
st.error("Output files not found in any subdirectory")
|
|
|
|
|
|
|
|
|
|
|
89 |
else:
|
90 |
st.warning("Output files not found")
|
91 |
else:
|