1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
# Physiological Waveforms
Physiological monitoring data such as electrocardiograms, pulse oximetry, or external triggering may accompany MR acquisitions. These physiological data are stored in MRD as a combination of a fixed [WaveformHeader](WaveformHeader) and the [raw physiological waveforms](WaveformData).
(WaveformHeader)=
## WaveformHeader
The WaveformHeader contains metadata associated with a set of waveform data and has the following fields:
| Field | Description | Type | Offset |
| -- | -- | -- | -- |
| version | Version number | uint16_t | 0 bytes |
| flags | Bit field with flags | uint64_t | 8 bytes (not 2!) |
| measurement_uid | Unique ID for this measurement | uint32_t | 16 bytes |
| scan_counter | Number of the acquisition after this waveform | uint32_t | 20 bytes |
| time_stamp | Starting timestamp of this waveform | uint32_t | 24 bytes |
| number_of_samples | Number of samples acquired | uint16_t | 28 bytes |
| channels | Active channels | uint16_t | 30 bytes |
| sample_time_us | Time between samples in microseconds | float | 32 bytes |
| waveform_id | [ID matching types specified in XML header](WaveformIDs) | uint16_t | 36 bytes |
| | **Total** | **40 bytes (2 bytes padding at the end!)** | |
A reference implementation for serialization/deserialization of the WaveformHeader can be found in [serialization.cpp](../libsrc/serialization.cpp).
(WaveformIDs)=
### Waveform IDs
The ``waveform_id`` field in the WaveformHeader describes the type of physiological data stored. The following ID numbers are standardized:
| Value | Name |
| -- | -- |
| 0 | ECG |
| 1 | Pulse Oximetry |
| 2 | Respiratory |
| 3 | External Waveform 1 |
| 4 | External Waveform 2 |
For each type of ``waveform_id`` included in the dataset, a corresponding ``WaveformInformation`` entry is found in the MRD header to describe the data interpretation. For example:
```xml
<waveformInformation>
<waveformId>0</waveformName>
<waveformName>ECG1</waveformName>
<waveformTriggerChannel>4</waveformTriggerChannel>
</waveformInformation>
```
Physiological data used for triggering may have an associated "trigger" channel as detected by the MR system. The ``waveformTriggerChannel`` indicates the channel index (0-indexed) which contains the detected triggers and is omitted if no trigger data is present.
Waveform ID numbers less than 1024 are reserved while numbers greater than or equal to 1024 can be used to define custom physiological data. For custom waveform_ids, corresponding WaveformInformation entries should be added to the MRD header to describe the data interpretation. For example:
```xml
<waveformInformation>
<waveformId>1024</waveformName>
<waveformName>CustomName</waveformName>
</waveformInformation>
```
(WaveformData)=
## Waveform Data
Waveform data is sent as an uint32_t array, ordered by looping through samples and then through channels:
<style>
.smalltable td {
font-size: 80%;
border-collapse: collapse;
border-spacing: 0;
border-width: 0;
padding: 3px;
border: 1px solid lightgray
}
</style>
<table class="smalltable">
<tr>
<td style="text-align: center" colspan="3">Channel 1</td>
<td style="text-align: center" colspan="3">Channel 2</td>
<td style="text-align: center" rowspan="2">...</td>
<td style="text-align: center" colspan="3">Channel n</td>
</tr>
<tr>
<td style="text-align: center">w<sub>1</sub></td>
<td style="text-align: center">...</td>
<td style="text-align: center">w<sub>n</sub></td>
<td style="text-align: center">w<sub>1</sub></td>
<td style="text-align: center">...</td>
<td style="text-align: center">w<sub>n</sub></td>
<td style="text-align: center">w<sub>1</sub></td>
<td style="text-align: center">...</td>
<td style="text-align: center">w<sub>n</sub></td>
</tr>
</table>
|