Skip to content

Commit 751a040

Browse files
committed
add print if already done vec
1 parent 9b15e1f commit 751a040

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/cardiotensor/utils/downsampling.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,9 @@ def downsample_vector_volume(
9696
all_exist = False
9797
break
9898
if all_exist:
99-
return
100-
99+
print(f"✅ Downsampled images for eigen_vec already exist. Skipping.")
100+
return
101+
101102
# Load dimensions from the first npy in each block
102103
sample = np.load(npy_list[0])
103104
_, h, w = sample.shape

0 commit comments

Comments
 (0)