Hi,
I just started using the ISMRMRD package for my raw k-space data obtained from dynamic radial FLASH measurements of a moving wrist on a Skyra.
As a first step, I converted my raw file to .h5 format using the following command:
./siemens_to_ismrmrd -f /media/sf_Desktop/UC_Davis/4D_Wrist_Imaging/Raw_data_Wrist_MRI/January_12_2017_Marissa/Raw_data/meas_MID00051_FID12446_2D_Radial_Radial_Ulnar_original_FOV_100_fa8.dat -o resulting_file.h5
Next, I tried to read the "resulting_file.h5" using MATLAB as
data=h5read('/home/calvin/siemens_to_ismrmrd/build/resulting_file.h5', '/');
However, I get the following error
Error using h5readc
The HDF5 library encountered an error and produced the following stack trace information:
H5Dopen2 not a dataset
Error in h5read (line 58)
[data,var_class] = h5readc(Filename,Dataset,start,count,stride);
Can you tell me how do I fix this?
Thanks.