-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_parallelized.py
29 lines (24 loc) · 935 Bytes
/
main_parallelized.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
from nrrd_to_png import nrrd_to_png as unroll_nrrd
from pathlib import Path
import os
import multiprocessing
from multiprocessing import Pool
dataset_src = Path("C:/Users/user/Desktop/dataset/mri")
dataset_dst = Path("C:/Users/user/Desktop/dataset_preprocessed/mri")
def gen_single(nrrd):
nrrddir = nrrd.parent
out = Path(str(nrrddir).replace(str(dataset_src), str(dataset_dst)))
if not out.exists():
os.makedirs(out)
unroll_nrrd(nrrd, out)
if __name__ == '__main__':
assert dataset_src.exists()
nrrdfiles = []
for dirpath, subdirs, files in os.walk(dataset_src):
for f in files:
if f.endswith(".nrrd") and (f.startswith("MRI") or f.startswith("Prostate") or f.startswith("Target")):
nrrdfiles.append(Path(dirpath) / f)
print("Processing...")
with Pool(multiprocessing.cpu_count()) as pool:
pool.map(gen_single, nrrdfiles)
print("Done.")