-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIXI-sitewise-restructure.py
27 lines (23 loc) · 1.09 KB
/
IXI-sitewise-restructure.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
import os
in_dir = 'C:/Users/HP/Desktop/Trust Lab/ixi_dataset_Skull_Stripped/'
out_dir = 'C:/Users/HP/Desktop/Trust Lab/IXI-original-nifti-stripped/'
# modalities = ['T1', 'T2', 'PD']
modalities = ['T1']
sites = ['Guys', 'HH', 'IOP']
# sites = ['HH']
for modality in modalities:
for site in sites:
if not os.path.exists(f"{out_dir}{site}"):
os.makedirs(f"{out_dir}{site}")
for f in os.listdir(f"{in_dir}{modality}"):
# Check if the file contains the string site
if site in f:
# Move the file to the corresponding site folder
fname = f[:-20] + f[-16:]
os.rename(f"{in_dir}{modality}/{f}", f"{out_dir}{site}/{fname}")
# os.system(f'copy "{in_dir}{modality}/{f}" "{out_dir}{site}/{fname}"')
# Create empty train and test folders for manually splitting the data afterwards
if not os.path.exists(f"{out_dir}{site}/train"):
os.makedirs(f"{out_dir}{site}/train")
if not os.path.exists(f"{out_dir}{site}/test"):
os.makedirs(f"{out_dir}{site}/test")