-
Hi, I don't really know how to label the encoding counters for 3D non-cartesian acquisition. I can't use the kspace_encode_step_1 to store the number of projection because I have more projection than the Int16 limits (2^15). kspace_encode_step_1= mod(nPhase2,2^15)
kspace_encode_step_2=div(nPhase2,2^15) or just let that to 0 but I have an issue during the conversion from RawAcquisitionData to AcquisitionData in traj = zeros(Float32, D, length(i1:i2), numEncSt1, numEncSt2, numSl, numRep)
traj[:, :, encSt1[l], encSt2[l], sl[l]-minimum(sl)+1, rep[l]-minimum(rep)+1] .= f.profiles[l].traj[:,i1:i2] Do you have an idea how we can manage that problem without breaking the rest ? Aurélien |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Is this the same issue as #68 ? I yesterday changed If not we have a problem since this effectively means that one cannot convert BrukerFiles into ISMRMRD. |
Beta Was this translation helpful? Give feedback.
-
First try here : #79 |
Beta Was this translation helpful? Give feedback.
First try here : #79