|
a |
|
b/docs/source/scans.rst |
|
|
1 |
.. _scans: |
|
|
2 |
|
|
|
3 |
Scans (dosma.scan_sequences) |
|
|
4 |
================================================================================ |
|
|
5 |
DOSMA currently supports 4 MRI scan types: |
|
|
6 |
|
|
|
7 |
1. Quantitative DESS (qDESS) |
|
|
8 |
2. CubeQuant |
|
|
9 |
3. MAPSS |
|
|
10 |
4. UTE Cones |
|
|
11 |
|
|
|
12 |
Each scan implements a subset of the following actions: |
|
|
13 |
|
|
|
14 |
1. **Segment** tissues from scan |
|
|
15 |
2. **Interregister** to register between lower resolution (moving) and higher resolution (target) scans |
|
|
16 |
3. **Quantitative fitting** for voxel-wise parameter maps. |
|
|
17 |
|
|
|
18 |
.. automodule:: |
|
|
19 |
dosma.scan_sequences |
|
|
20 |
|
|
|
21 |
.. autosummary:: |
|
|
22 |
:toctree: generated |
|
|
23 |
|
|
|
24 |
dosma.scan_sequences.ScanSequence |
|
|
25 |
dosma.scan_sequences.QDess |
|
|
26 |
dosma.scan_sequences.CubeQuant |
|
|
27 |
dosma.scan_sequences.Mapss |
|
|
28 |
dosma.scan_sequences.Cones |
|
|
29 |
|
|
|
30 |
Below we briefly discuss the different scan types and associated actions. |
|
|
31 |
|
|
|
32 |
qDESS |
|
|
33 |
-------------------------------------------------------------------------------- |
|
|
34 |
Quantitative double echo in steady state (qDESS) is a high-resolution scan that has shown high efficacy for analytic |
|
|
35 |
|T2| mapping :cite:`sveinsson2017simple`. Because of its high resolution, qDESS scans have been shown to be good candidates for automatic |
|
|
36 |
segmentation. |
|
|
37 |
|
|
|
38 |
DOSMA supports both automatic segmentation and analytical |T2| solving for qDESS scans. Automated segmentation uses |
|
|
39 |
pre-trained convolutional neural networks (CNNs). |
|
|
40 |
|
|
|
41 |
|
|
|
42 |
CubeQuant (3D FSE) |
|
|
43 |
-------------------------------------------------------------------------------- |
|
|
44 |
Cubequant is a 3D fast-spin-echo (FSE) |T1rho|-weighted sequence. Acquisitions between spin-locks are |
|
|
45 |
susceptible to motion, and as a result, volumes within the scan have to be registered to each other |
|
|
46 |
(i.e. *intra*-registered). |
|
|
47 |
|
|
|
48 |
Moreover, CubeQuant scans often have lower resolution to increase SNR in practice. Because of the |
|
|
49 |
low-resolution, these scans are often registered to higher resolution target scans :cite:`jordan2014variability`. |
|
|
50 |
|
|
|
51 |
By default, DOSMA intraregisters volumes acquired at different spin-locks to one another. This framework also supports |
|
|
52 |
both registration between scan types (interregistration) and |T1rho| fitting. |
|
|
53 |
|
|
|
54 |
Because registration is sensitive to the target scan type, different registration approaches may work better with |
|
|
55 |
different scan types. By default, the registration approaches are optimized to register CubeQuant scans to qDESS scans. |
|
|
56 |
|
|
|
57 |
|
|
|
58 |
3D MAPSS (SPGR) |
|
|
59 |
-------------------------------------------------------------------------------- |
|
|
60 |
Magnetization‐prepared angle‐modulated partitioned k‐space spoiled gradient echo snapshots (3D MAPSS) is a spoiled |
|
|
61 |
gradient (SPGR) sequence that reduce specific absorption rate (SAR), increase SNR, and reduce the extent of |
|
|
62 |
retrospective correction of contaminating |T1| effects :cite:`li2008vivo`. |
|
|
63 |
|
|
|
64 |
The MAPSS sequence can be used to estimate both |T1rho| and |T2| quantitative values. Like CubeQuant scans, MAPSS scans |
|
|
65 |
must also be intraregistered to ensure alignment between all volumes acquired at different echos and spin-lock times. |
|
|
66 |
|
|
|
67 |
DOSMA automatically performs intraregistration among volumes within the MAPSS scan. |T2| and |T1rho| fitting is also |
|
|
68 |
supported. |
|
|
69 |
|
|
|
70 |
|
|
|
71 |
UTE Cones |
|
|
72 |
-------------------------------------------------------------------------------- |
|
|
73 |
Ultra-short echo time (UTE) Cones (or Cones) is a |T2star|-weighted sequence. In practice, many of these scans are low |
|
|
74 |
resolution. |
|
|
75 |
|
|
|
76 |
DOSMA supports interregistration between Cones and other scan sequences; however, registration files are optimized for |
|
|
77 |
registration to qDESS. |T2star| fitting is also supported. |
|
|
78 |
|
|
|
79 |
|
|
|
80 |
.. Substitutions |
|
|
81 |
.. |T2| replace:: T\ :sub:`2` |
|
|
82 |
.. |T1| replace:: T\ :sub:`1` |
|
|
83 |
.. |T1rho| replace:: T\ :sub:`1`:math:`{\rho}` |
|
|
84 |
.. |T2star| replace:: T\ :sub:`2`:sup:`*` |