You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When only one patient in the subject_ids text file, np.loadtext function will squeeze the mono-dimensional axes, leading to an error when looping over subject_ids: "iteration over a 0-d array"
We need to specify the minimum dimension of outputs to avoid this problem
When only one patient in the subject_ids text file, np.loadtext function will squeeze the mono-dimensional axes, leading to an error when looping over subject_ids: "iteration over a 0-d array"
We need to specify the minimum dimension of outputs to avoid this problem
Suggested correction :
subject_ids=np.loadtxt(subject_dir+subject_ids_filename, dtype='str', ndmin = 1)
meld/scripts/filter_intrinsic_curvature.py
Line 26 in 622fcb4
The text was updated successfully, but these errors were encountered: