Skip to content

Commit

Permalink
nicer prints
Browse files Browse the repository at this point in the history
Signed-off-by: neuronflow <[email protected]>
  • Loading branch information
neuronflow committed Nov 13, 2023
1 parent c2af840 commit e677448
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions example_modality_centric.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ def preprocess(inputDir):
flair_file = btk_raw_dir.files("*fla.nii.gz")

if len(t1_file) == len(t1c_file) == len(t2_file) == len(flair_file) == 1:
print(t1_file)
print(t1c_file)
print(t2_file)
print(flair_file)
# print(t1_file)
# print(t1c_file)
# print(t2_file)
# print(flair_file)

t1File = t1_file[0]
t1cFile = t1c_file[0]
Expand Down Expand Up @@ -107,5 +107,5 @@ def preprocess(inputDir):
exams = EXAMPLE_DATA_DIR.dirs()

for exam in tqdm(exams):
print(exam)
print("processing:", exam)
preprocess(exam)

0 comments on commit e677448

Please sign in to comment.