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
In dicm2nii.m (line 449) says that the full header needs to be regenerated but the s.isEnh is not initialized and therefore fails in line 484.
I solved this by adding:
s.isEnh = isfield(s, 'PerFrameFunctionalGroupsSequence');
in line 451, similar to line 420. But not sure if this is correct.
The text was updated successfully, but these errors were encountered:
In dicm2nii.m (line 449) says that the full header needs to be regenerated but the s.isEnh is not initialized and therefore fails in line 484.
I solved this by adding:
s.isEnh = isfield(s, 'PerFrameFunctionalGroupsSequence');
in line 451, similar to line 420. But not sure if this is correct.
The text was updated successfully, but these errors were encountered: