Scanner attribute for the k-space data #313
-
Hello! Is there information available regarding which scanner was used for the samples, such as 3T versus 1.5T systems? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hello @NebiyouTen, yes you can get this information. import h5py
from lxml import etree
hf = h5py.File("file1001067.h5", "r")
root = etree.fromstring(hf['ismrmrd_header'][()])
print(etree.tostring(root, pretty_print=True).decode()) Output:
You can see this file is from a 3T Skyra scanner. Please see the use of the |
Beta Was this translation helpful? Give feedback.
-
(Reopening this so it's on the list of the discussions in case others search for it.) |
Beta Was this translation helpful? Give feedback.
Hello @NebiyouTen, yes you can get this information.
Output: