Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ismrmrd/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def get_data_type_from_dtype(dtype):
# Image Header
class ImageHeader(FlagsMixin, EqualityMixin, ctypes.Structure):
_pack_ = 2
_layout_ = 'ms'
_fields_ = [("version", ctypes.c_uint16),
("data_type", ctypes.c_uint16),
("flags", ctypes.c_uint64),
Expand Down
1 change: 1 addition & 0 deletions ismrmrd/waveform.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

class WaveformHeader(FlagsMixin, EqualityMixin, ctypes.Structure):
_pack_ = 8
_layout_ = 'ms'
_fields_ = [("version", ctypes.c_uint16),
("flags", ctypes.c_uint64),
("measurement_uid", ctypes.c_uint32),
Expand Down