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
The first part (header) is just read fine. However, the HDF5.HDF5Vlen{Float32} are much too short. The issue seems to be that this sizeof https://github.com/JuliaIO/HDF5.jl/blob/master/src/HDF5.jl#L1446
does not contain the length of the dataset. I am not familiar with HDF5 internals but it seems that here just a "pointer/offset" is stored.
Would be great if someone could help with some more experience. Be browsing HDF5 history it seems that @simonster has quite some insight into HDF5Compound.
Thanks,
Tobi
The text was updated successfully, but these errors were encountered:
I said that the header is just read fine but that is not the case. The struct has a sub struct and that seems to be ignored because nested HDF5Compound make problems with HDF5.jl.
I was not aware that its possible to store such complex structures within a HDF5 file. Makes it pretty unaccessible IMHO
Hi,
as indicated in #425, I would like to read the data from https://sourceforge.net/projects/ismrmrd/files/data/ (e.g. the spiral data) which is an ISMRMRD file (http://onlinelibrary.wiley.com/doi/10.1002/mrm.26089/abstract)
The first issue was fixed in #379. The next issue is that the compound data contains 3 parts:
The first part (header) is just read fine. However, the
HDF5.HDF5Vlen{Float32}
are much too short. The issue seems to be that this sizeof https://github.com/JuliaIO/HDF5.jl/blob/master/src/HDF5.jl#L1446does not contain the length of the dataset. I am not familiar with HDF5 internals but it seems that here just a "pointer/offset" is stored.
Would be great if someone could help with some more experience. Be browsing HDF5 history it seems that @simonster has quite some insight into HDF5Compound.
Thanks,
Tobi
The text was updated successfully, but these errors were encountered: