Giter Club home page Giter Club logo

dfcn's Introduction

DFCN

Unofficial Pytorch implementation of “Multi-slice compressed sensing MRI reconstruction based on deep fusion connection network

DFCN is a recent work on Multi-slice MRI reconstruction. According to the information provided in the paper, I implemented the model structure of Pytorch version and packaged it to make it applicable to Multi-coil MRI data. If you are interested in this work, please click the link to learn more about the DFCN paper. Thanks to DFCN authors for their contributions to MRI multi-slice reconstruction.

Abstract

figure1

Recently, magnetic resonance imaging (MRI) reconstruction based on deep learning has become popular. Nevertheless, reconstruction of highly undersampled MR images is still challenging due to severe aliasing effects. In this study we built a deep fusion connection network (DFCN) to efficiently utilize the correlation information between adjacent slices. The proposed method was evaluated with online public IXI dataset and Calgary-Campinas-359 dataset. The results show that DFCN can generate the best reconstruction images in de-aliasing and restoring tissue structure compared with several state-of-the-art methods. The mean value of the peak signal-to-noise ratio could reach 34.16 dB, the mean value of the structural similarity is 0.9626, and the mean value of the normalized mean square error is 0.1144 on T2-weighted brain data of IXI dataset under 10× acceleration. Additionally, the mean value of the peak signal-to-noise ratio could reach 30.17 dB, the mean value of the structural similarity is 0.9259, and the mean value of the normalized mean square error is 0.1294 on T1-weighted brain data of Calgary-Campinas-359 dataset under 10× acceleration. With the correlation information between adjacent slices as prior knowledge, our method can dramatically eliminate aliasing effects and enhance the reconstruction quality of undersampled MR images.

figure2

Usage

import torch
from model.MSMC_model import MSMC_model
from model.DFCN import DFCN,DFCN_single

## Please refer to fastmri for data processing
## Here is Multi-coil version
mask_kspace = torch.randn(2, 16, 7, 128, 128,2)  ## batch,coil,slices,h,w,2
mask = torch.ones(2, 16, 7, 128, 128,2).to(torch.bool)  ## batch,coil,slices,h,w,2  dtype is bool

model = MSMC_model(DFCN(slices=7),sens_chans=8,sens_pools=4)
recon = model(mask_kspace,mask)
print(model)
print(recon.shape)

## Let's try single coil version (original DFCN) 
mask_kspace = torch.randn(2, 1, 7, 128, 128,2)  ## batch,coil,slices,h,w,2
mask = torch.ones(2, 1, 7, 128, 128,2).to(torch.bool)  ## batch,coil,slices,h,w,2  dtype is bool

model = DFCN_single(slices=7)
recon = model(mask_kspace,mask)
print(model)
print(recon.shape)

Tips: I did not provide the complete training and testing code. I believe that for most students looking for open source code (at least for me), the data processing of many MRI reconstruction open source code is always so tedious and the data forms are so diverse that we usually have to look at the data processing code for a long time to understand what data to input into the model. And they name variables so casually. Even some only give the processed sample data, we have to download and interpret, these are too troublesome. We just want to apply it to our own data.😔

Citations

@article{PengShangguan2022MultisliceCS,
  title={Multi-slice compressed sensing MRI reconstruction based on deep fusion connection network},
  author={Peng Shangguan and Wenjie Jiang and Jiechao Wang and Jian Wu and Congbo Cai and Shuhui Cai},
  journal={Magnetic Resonance Imaging},
  year={2022}
}

dfcn's People

Contributors

breeze-zero avatar

Stargazers

SungHo Lee avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.