-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_test.py
295 lines (249 loc) · 10.5 KB
/
run_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
# import os
# import nibabel as nib
# import numpy as np
# import subprocess
# from concurrent.futures import ProcessPoolExecutor, as_completed
# import gc
# def load_and_check_nifti_file(filepath):
# img = nib.load(filepath)
# data = img.get_fdata()
# if np.count_nonzero(data) == 0:
# return None
# return img, data
# def combine_vertebrae_labels(label_path, output_path):
# combined_data = None
# combined_affine = None
# for filename in os.listdir(label_path):
# if filename.startswith(('vertebrae_C', 'vertebrae_L', 'vertebrae_T')) and filename.endswith('.nii.gz'):
# filepath = os.path.join(label_path, filename)
# result = load_and_check_nifti_file(filepath)
# if result is None:
# print(f"Skipping empty file: {filename}")
# continue
# img, data = result
# if combined_data is None:
# combined_data = np.zeros_like(data, dtype=np.float32)
# combined_affine = img.affine
# combined_data += data
# if combined_data is not None:
# combined_img = nib.Nifti1Image(combined_data, combined_affine)
# nib.save(combined_img, output_path)
# print(f"Combined label saved to {output_path}")
# else:
# print("No valid vertebrae labels found.")
# def execute_command(idx, base_path):
# try:
# dir_name = f"BDMAP_{idx:08d}"
# label_path = os.path.join(base_path, dir_name, "segmentations")
# output_path = os.path.join(base_path, dir_name, "combined_vertebrae_label.nii.gz")
# # Log the current directory being processed
# print(f"\n-------- Processing {dir_name} --------\n")
# # Combine vertebrae labels
# combine_vertebrae_labels(label_path, output_path)
# # Construct command for test.py
# ct_file = os.path.join(base_path, dir_name, "ct.nii.gz")
# command = [
# "python", "test.py",
# "-D", ct_file,
# "-B", output_path,
# "-P", label_path,
# "-S", os.path.join(base_path, dir_name),
# ]
# print(f"Executing command: {' '.join(command)}")
# result = subprocess.run(command, capture_output=True, text=True, check=True)
# print(f"Output:\n{result.stdout}")
# print(f"Errors:\n{result.stderr}")
# except subprocess.CalledProcessError as e:
# print(f"Command '{' '.join(command)}' failed with return code {e.returncode}")
# print(f"Output:\n{e.output}")
# print(f"Errors:\n{e.stderr}")
# except Exception as e:
# print(f"Exception for index {idx}: {e}")
# finally:
# gc.collect()
# # Log completion of the current directory
# print(f"\n-------- Finished {dir_name} --------\n")
# def main():
# base_path = "/ccvl/net/ccvl15/jingxing/AbdomenAtlasPro_update"
# start_idx = 1
# end_idx = 5500
# indices = list(range(start_idx, end_idx + 1))
# max_workers = 1
# with ProcessPoolExecutor(max_workers=max_workers) as executor:
# futures = {executor.submit(execute_command, idx, base_path): idx for idx in indices}
# for future in as_completed(futures):
# idx = futures[future]
# try:
# future.result()
# except Exception as exc:
# print(f"Command for index {idx} generated an exception: {exc}")
# if __name__ == "__main__":
# main()
# import os
# import nibabel as nib
# import numpy as np
# import subprocess
# from concurrent.futures import ProcessPoolExecutor, as_completed
# import gc
# def load_and_check_nifti_file(filepath):
# img = nib.load(filepath)
# data = img.get_fdata()
# if np.count_nonzero(data) == 0:
# return None
# return img, data
# def combine_vertebrae_labels(label_path, output_path):
# combined_data = None
# combined_affine = None
# for filename in os.listdir(label_path):
# if filename.startswith(('vertebrae_C', 'vertebrae_L', 'vertebrae_T')) and filename.endswith('.nii.gz'):
# filepath = os.path.join(label_path, filename)
# result = load_and_check_nifti_file(filepath)
# if result is None:
# print(f"Skipping empty file: {filename}")
# continue
# img, data = result
# if combined_data is None:
# combined_data = np.zeros_like(data, dtype=np.float32)
# combined_affine = img.affine
# combined_data += data
# if combined_data is not None:
# combined_img = nib.Nifti1Image(combined_data, combined_affine)
# nib.save(combined_img, output_path)
# print(f"Combined label saved to {output_path}")
# else:
# print("No valid vertebrae labels found.")
# def execute_command(idx, base_path, ct_path, gpu_id):
# try:
# dir_name = f"BDMAP_{idx:08d}"
# label_path = os.path.join(base_path, dir_name, "segmentations")
# output_path = os.path.join(base_path, dir_name, "combined_vertebrae_label.nii.gz")
# # Log the current directory being processed
# print(f"\n-------- Processing {dir_name} on GPU {gpu_id} --------\n")
# # Combine vertebrae labels
# combine_vertebrae_labels(label_path, output_path)
# # Construct command for test.py
# ct_file = os.path.join(ct_path, dir_name, "ct.nii.gz")
# command = [
# "python", "test.py",
# "-D", ct_file,
# "-B", output_path,
# "-P", label_path,
# "-S", os.path.join(base_path, dir_name),
# ]
# print(f"Executing command: {' '.join(command)} on GPU {gpu_id}")
# env = os.environ.copy()
# env["CUDA_VISIBLE_DEVICES"] = str(gpu_id)
# result = subprocess.run(command, capture_output=True, text=True, check=True, env=env)
# print(f"Output:\n{result.stdout}")
# print(f"Errors:\n{result.stderr}")
# except subprocess.CalledProcessError as e:
# print(f"Command '{' '.join(command)}' failed with return code {e.returncode}")
# print(f"Output:\n{e.output}")
# print(f"Errors:\n{e.stderr}")
# except Exception as e:
# print(f"Exception for index {idx}: {e}")
# finally:
# gc.collect()
# # Log completion of the current directory
# print(f"\n-------- Finished {dir_name} --------\n")
# def main():
# base_path = "/ccvl/net/ccvl15/jingxing/AbdomenAtlasPro_update"
# ct_path= "/mnt/T9/AbdomenAtlasPro"
# start_idx = 1
# end_idx = 5500
# num_gpus = 4
# indices = list(range(start_idx, end_idx + 1))
# grouped_indices = [indices[i:i + num_gpus] for i in range(0, len(indices), num_gpus)]
# with ProcessPoolExecutor(max_workers=num_gpus) as executor:
# futures = []
# for group in grouped_indices:
# for i, idx in enumerate(group):
# gpu_id = i % num_gpus
# futures.append(executor.submit(execute_command, idx, base_path, ct_path, gpu_id))
# for future in as_completed(futures):
# try:
# future.result()
# except Exception as exc:
# print(f"Command generated an exception: {exc}")
# if __name__ == "__main__":
# main()
import os
import nibabel as nib
import numpy as np
import subprocess
from concurrent.futures import ProcessPoolExecutor, as_completed
import gc
def load_and_check_nifti_file(filepath):
img = nib.load(filepath)
data = img.get_fdata()
if np.count_nonzero(data) == 0:
return None
return img, data
def combine_vertebrae_labels(label_path, output_path):
combined_data = None
combined_affine = None
for filename in os.listdir(label_path):
if filename.startswith(('vertebrae_C', 'vertebrae_L', 'vertebrae_T')) and filename.endswith('.nii.gz'):
filepath = os.path.join(label_path, filename)
result = load_and_check_nifti_file(filepath)
if result is None:
print(f"Skipping empty file: {filename}")
continue
img, data = result
if combined_data is None:
combined_data = np.zeros_like(data, dtype=np.float32)
combined_affine = img.affine
combined_data += data
if combined_data is not None:
combined_img = nib.Nifti1Image(combined_data, combined_affine)
nib.save(combined_img, output_path)
print(f"Combined label saved to {output_path}")
else:
print("No valid vertebrae labels found.")
def execute_command(idx, base_path, ct_path, gpu_id):
try:
dir_name = f"BDMAP_{idx:08d}"
label_path = os.path.join(base_path, dir_name, "segmentations")
output_path = os.path.join(base_path, dir_name, "combined_vertebrae_label.nii.gz")
print(f"\n-------- Processing {dir_name} on GPU {gpu_id} --------\n")
combine_vertebrae_labels(label_path, output_path)
ct_file = os.path.join(ct_path, dir_name, "ct.nii.gz")
command = [
"python", "test.py",
"-D", ct_file,
"-B", output_path,
"-P", label_path,
"-S", os.path.join(base_path, dir_name),
]
print(f"Executing command: {' '.join(command)} on GPU {gpu_id}")
env = os.environ.copy()
env["CUDA_VISIBLE_DEVICES"] = str(gpu_id)
result = subprocess.run(command, capture_output=True, text=True, check=True, env=env)
print(f"Output:\n{result.stdout}")
print(f"Errors:\n{result.stderr}")
except subprocess.CalledProcessError as e:
print(f"Command '{' '.join(command)}' failed with return code {e.returncode}")
print(f"Output:\n{e.output}")
print(f"Errors:\n{e.stderr}")
except Exception as e:
print(f"Exception for index {idx}: {e}")
finally:
gc.collect()
print(f"\n-------- Finished {dir_name} --------\n")
def main():
base_path = "/ccvl/net/ccvl15/jingxing/AbdomenAtlasPro_update"
ct_path= "/mnt/T9/AbdomenAtlasPro"
start_idx = 5000
end_idx = 10000
num_gpus = 4
indices = list(range(start_idx, end_idx + 1))
with ProcessPoolExecutor(max_workers=num_gpus) as executor:
futures = {executor.submit(execute_command, idx, base_path, ct_path, i % num_gpus): idx for i, idx in enumerate(indices)}
for future in as_completed(futures):
idx = futures[future]
try:
future.result()
except Exception as exc:
print(f"Command for index {idx} generated an exception: {exc}")
if __name__ == "__main__":
main()