-
Hi, I am using MRIReco.jl to reconstruct spinal cord data acquired with a multi-echo GRE. When applying a SENSE reconstruction, it is possible to take the noise matrix into account to optimise the image SNR, as shown by Pruessmann et al., in 1999. This usually does not have any effect on the image quality for brain data, but it should improve the results for spinal cord data. I have been looking at the reconstruction functions, but it seems like the noise matrix is not expected as input. Is there an implemented way to do this? I plan on attending the next developers and users meeting in December, and I would be happy to discuss this matter on that occasion. Pruessmann, K. P., Weiger, M., Scheidegger, M. B., & Boesiger, P. (1999). SENSE: Sensitivity encoding for fast MRI. Magnetic Resonance in Medicine, 42(5), 952–962. https://doi.org/10.1002/(SICI)1522-2594(199911)42:5<952::AID-MRM16>3.0.CO;2-S |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
We currently don't support that. I think the easiest way to do so will be
to perform the prewhitening on the rawdata (gadgetron is also doing that)
rather than introducing the noise matrix during the sense reconstruction
You can take a look at
http://hansenms.github.io/sunrise/sunrise2014/Hansen_ImageReconstruction_ParallelImaging_20140428.pdf
Le mer. 23 nov. 2022 à 16:18, Laura Beghini ***@***.***> a
écrit :
… Hi, I am using MRIReco.jl to reconstruct spinal cord data acquired with a
multi-echo GRE. When applying a SENSE reconstruction, it is possible to
take the noise matrix into account to optimise the image SNR, as shown by
Pruessmann et al., in 1999. This usually does not have any effect on the
image quality for brain data, but it should improve the results for spinal
cord data. I have been looking at the reconstruction functions, but it
seems like the noise matrix is not expected as input. Is there an
implemented way to do this? I plan on attending the next developers and
users meeting in December, and I would be happy to discuss this matter on
that occasion.
Pruessmann, K. P., Weiger, M., Scheidegger, M. B., & Boesiger, P. (1999).
SENSE: Sensitivity encoding for fast MRI. Magnetic Resonance in Medicine,
42(5), 952–962.
https://doi.org/10.1002/(SICI)1522-2594(199911)42:5<952::AID-MRM16>3.0.CO;2-S
—
Reply to this email directly, view it on GitHub
<#135>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AC5P7O2QGUIWHGXM4ECIUNLWJYYVHANCNFSM6AAAAAASJCRR64>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
--
------------------------------------------------------------
TROTIER Aurélien
31 allée de la Biotte
33470 Gujan-Mestras
06.09.12.61.61
***@***.***
|
Beta Was this translation helpful? Give feedback.
-
I am also interested in this question. Maybe you could help with two clarifications:
|
Beta Was this translation helpful? Give feedback.
-
This should not be done on the One can either do this "lazily" like we do with the density compensation weights: |
Beta Was this translation helpful? Give feedback.
-
I have implemented the raw data pre-whitening for the multi coil reconstruction, and sent a pull request #140. |
Beta Was this translation helpful? Give feedback.
I have implemented the raw data pre-whitening for the multi coil reconstruction, and sent a pull request #140.
Should I implement it for the multi coil multi echo reconstruction as well?