You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PI-MoCoNet is an advanced deep learning framework designed to robustly correct motion artifacts in brain MRI images by integrating complementary information from both the spatial and k-space domains
A Physics-Informed Deep Learning Framework for Brain MRI Motion Artifact Correction
🔥🔥PI-MoCoNet is a deep learning framework designed to robustly remove motion artifacts in brain MRI images by integrating complementary information from both the spatial and k-space domains.
The following flowchart illustrates the architecture of PI-MoCoNet:
Getting Started
⚠️Important: The code for this study will be released publicly upon acceptance of the manuscript .
Prerequisites
Python (>=3.12)
PyTorch (>=2.5)
NVIDIA CUDA (for GPU acceleration)
Additional dependencies as listed in requirements.txt
Installation
Clone the repository:
git clone https://github.com/mosaf/PI-MoCoNet.git
cd PI-MoCoNet
Install dependencies:
pip install -r requirements.txt
Project Structure
```bash
├── data_preparation
│ ├── main_preperation.py (load .nii files, perform motion simulation and save them to .h5 file)
│ ├── motion_simulation2D.py
├── datasets
│ ├── data_loader.py
├── losses
│ ├── losses.py (contain DC and Dice loss functions)
├── networks
│ ├── seg_net.py (motion detection network)
│ ├── unet_swin.py (motion correction network)
│ ├── swin_transformer.py
│ ├── fp16_util.py
│ ├── basic_ops.py
├── build.py
├── main.py
└── utils.py
Running the Code
To run the project, modify the parameters in the main.py file and execute the main.py script:
python main.py
📚 Citation
If you find PI-MoCoNet useful for your research or project, please consider citing our work:
@misc{safari2025physicsinformeddeeplearningmodel,
title={A Physics-Informed Deep Learning Model for MRI Brain Motion Correction},
author={Mojtaba Safari and Shansong Wang and Zach Eidex and Richard Qiu and Chih-Wei Chang and David S. Yu and Xiaofeng Yang},
year={2025},
eprint={2502.09296},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2502.09296},
}
About
PI-MoCoNet is an advanced deep learning framework designed to robustly correct motion artifacts in brain MRI images by integrating complementary information from both the spatial and k-space domains