├── .gitignore ├── README.md ├── create_dummy_data └── create_dummy_data.ipynb ├── dataset.py ├── main.py ├── mask ├── vista_18_192_192_acc_10.mat ├── vista_18_192_192_acc_12.mat ├── vista_18_192_192_acc_16.mat ├── vista_18_192_192_acc_20.mat ├── vista_18_192_192_acc_24.mat └── vista_18_192_192_acc_8.mat ├── model.py ├── preparation_code ├── generate_tfrecord.py └── generatemask.py ├── requirements.txt ├── test.py ├── test_prospective.py └── tools ├── __init__.py ├── compressed_sensing.py ├── mymath.py └── tools.py /.gitignore: -------------------------------------------------------------------------------- 1 | logs/ 2 | __pycache__/ 3 | models/ 4 | *.h5 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/README.md -------------------------------------------------------------------------------- /create_dummy_data/create_dummy_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/create_dummy_data/create_dummy_data.ipynb -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/dataset.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/main.py -------------------------------------------------------------------------------- /mask/vista_18_192_192_acc_10.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/mask/vista_18_192_192_acc_10.mat -------------------------------------------------------------------------------- /mask/vista_18_192_192_acc_12.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/mask/vista_18_192_192_acc_12.mat -------------------------------------------------------------------------------- /mask/vista_18_192_192_acc_16.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/mask/vista_18_192_192_acc_16.mat -------------------------------------------------------------------------------- /mask/vista_18_192_192_acc_20.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/mask/vista_18_192_192_acc_20.mat -------------------------------------------------------------------------------- /mask/vista_18_192_192_acc_24.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/mask/vista_18_192_192_acc_24.mat -------------------------------------------------------------------------------- /mask/vista_18_192_192_acc_8.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/mask/vista_18_192_192_acc_8.mat -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/model.py -------------------------------------------------------------------------------- /preparation_code/generate_tfrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/preparation_code/generate_tfrecord.py -------------------------------------------------------------------------------- /preparation_code/generatemask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/preparation_code/generatemask.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/test.py -------------------------------------------------------------------------------- /test_prospective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/test_prospective.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/compressed_sensing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/tools/compressed_sensing.py -------------------------------------------------------------------------------- /tools/mymath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/tools/mymath.py -------------------------------------------------------------------------------- /tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqihuang/LS-Net-Dynamic-MRI/HEAD/tools/tools.py --------------------------------------------------------------------------------