AdritRao commited on
Commit
356b9e4
·
verified ·
1 Parent(s): 43d1ecb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -27
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
- dicom_subdirectories = [subdir for subdir in os.listdir(temp_dicom_dir_path)
68
- if os.path.isdir(os.path.join(temp_dicom_dir_path, subdir))]
69
-
70
- dicom_folder = dicom_subdirectories[0] if dicom_subdirectories else None
71
-
72
- if dicom_folder:
73
- dicom_folder_path = os.path.join(temp_dicom_dir_path, dicom_folder)
74
- video_path = search_file(dicom_folder_path, "aaa.mp4")
75
- image_path = search_file(dicom_folder_path, "diameter_graph.png")
76
- largest_slice = search_file(dicom_folder_path, "out.png")
77
-
78
- if video_path and image_path and largest_slice:
79
- zip_filename = os.path.join("/home/user/app/C2C/temp_dicom_dir", "outputs.zip")
80
- zip_and_download(dicom_folder_path, zip_filename)
81
-
82
- st.title("Largest Slice")
83
- st.image(largest_slice, use_column_width=True)
84
-
85
- st.title("Video")
86
- st.video(video_path, format="video/mp4")
87
-
88
- st.title("Diameter Graph")
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: