├── README.md ├── cardiac_tagging_motion_estimation ├── .idea │ ├── cardiac_motion_estimation.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── ME_nets │ ├── LagrangianMotionEstimationNet.py │ └── __init__.py ├── data_set │ ├── __init__.py │ ├── data_augmentation.py │ ├── data_preprocessing.py │ ├── generate_training_configs.py │ ├── load_data_for_cine_ME.py │ └── logger.py ├── evaluation │ ├── __init__.py │ ├── evaluate_jacobian_determinants.py │ ├── evaluate_rms_error.py │ └── evaluate_rms_error_plot.py ├── ext │ ├── __init__.py │ ├── test_the_net.py │ └── train_the_net.py ├── losses │ ├── __init__.py │ └── train_loss.py └── model │ └── pro_new_model.pth ├── figures ├── 2_CH_11_15_tag_grid_img.gif ├── 3_CH_12_16_tag_grid_img.gif ├── 4_CH_10_14_tag_grid_img.gif ├── MT_tmri.png ├── SAX_STACK_43_21_lm_img.gif ├── SAX_STACK_45_23_eu_motion.gif ├── SAX_STACK_45_23_grid_img.gif ├── SAX_STACK_45_23_lag_motion.gif ├── SAX_STACK_45_23_lag_motion_map.gif ├── SAX_STACK_45_23_lm_img.gif ├── SAX_STACK_45_23_reg_img.gif ├── SAX_STACK_45_23_tag_grid_img.gif ├── SAX_STACK_48_26_lm_img.gif └── notes.txt ├── index.html └── static ├── css ├── bulma-carousel.min.css ├── bulma-slider.min.css ├── bulma.css.map.txt ├── bulma.min.css ├── fontawesome.all.min.css └── index.css ├── images ├── carousel1.jpg ├── carousel2.jpg ├── carousel3.jpg ├── carousel4.jpg └── favicon.ico ├── js ├── bulma-carousel.js ├── bulma-carousel.min.js ├── bulma-slider.js ├── bulma-slider.min.js ├── fontawesome.all.min.js └── index.js ├── pdfs └── sample.pdf └── videos ├── banner_video.mp4 ├── carousel1.mp4 ├── carousel2.mp4 └── carousel3.mp4 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/README.md -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/.idea/cardiac_motion_estimation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/.idea/cardiac_motion_estimation.iml -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/.idea/misc.xml -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/.idea/modules.xml -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/.idea/workspace.xml -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/ME_nets/LagrangianMotionEstimationNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/ME_nets/LagrangianMotionEstimationNet.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/ME_nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/data_set/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/data_set/data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/data_set/data_augmentation.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/data_set/data_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/data_set/data_preprocessing.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/data_set/generate_training_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/data_set/generate_training_configs.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/data_set/load_data_for_cine_ME.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/data_set/load_data_for_cine_ME.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/data_set/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/data_set/logger.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/evaluation/evaluate_jacobian_determinants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/evaluation/evaluate_jacobian_determinants.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/evaluation/evaluate_rms_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/evaluation/evaluate_rms_error.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/evaluation/evaluate_rms_error_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/evaluation/evaluate_rms_error_plot.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/ext/test_the_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/ext/test_the_net.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/ext/train_the_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/ext/train_the_net.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/losses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/losses/train_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/losses/train_loss.py -------------------------------------------------------------------------------- /cardiac_tagging_motion_estimation/model/pro_new_model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/cardiac_tagging_motion_estimation/model/pro_new_model.pth -------------------------------------------------------------------------------- /figures/2_CH_11_15_tag_grid_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/2_CH_11_15_tag_grid_img.gif -------------------------------------------------------------------------------- /figures/3_CH_12_16_tag_grid_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/3_CH_12_16_tag_grid_img.gif -------------------------------------------------------------------------------- /figures/4_CH_10_14_tag_grid_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/4_CH_10_14_tag_grid_img.gif -------------------------------------------------------------------------------- /figures/MT_tmri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/MT_tmri.png -------------------------------------------------------------------------------- /figures/SAX_STACK_43_21_lm_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/SAX_STACK_43_21_lm_img.gif -------------------------------------------------------------------------------- /figures/SAX_STACK_45_23_eu_motion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/SAX_STACK_45_23_eu_motion.gif -------------------------------------------------------------------------------- /figures/SAX_STACK_45_23_grid_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/SAX_STACK_45_23_grid_img.gif -------------------------------------------------------------------------------- /figures/SAX_STACK_45_23_lag_motion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/SAX_STACK_45_23_lag_motion.gif -------------------------------------------------------------------------------- /figures/SAX_STACK_45_23_lag_motion_map.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/SAX_STACK_45_23_lag_motion_map.gif -------------------------------------------------------------------------------- /figures/SAX_STACK_45_23_lm_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/SAX_STACK_45_23_lm_img.gif -------------------------------------------------------------------------------- /figures/SAX_STACK_45_23_reg_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/SAX_STACK_45_23_reg_img.gif -------------------------------------------------------------------------------- /figures/SAX_STACK_45_23_tag_grid_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/SAX_STACK_45_23_tag_grid_img.gif -------------------------------------------------------------------------------- /figures/SAX_STACK_48_26_lm_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/figures/SAX_STACK_48_26_lm_img.gif -------------------------------------------------------------------------------- /figures/notes.txt: -------------------------------------------------------------------------------- 1 | Some supplementary results. 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/index.html -------------------------------------------------------------------------------- /static/css/bulma-carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/css/bulma-carousel.min.css -------------------------------------------------------------------------------- /static/css/bulma-slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/css/bulma-slider.min.css -------------------------------------------------------------------------------- /static/css/bulma.css.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/css/bulma.css.map.txt -------------------------------------------------------------------------------- /static/css/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/css/bulma.min.css -------------------------------------------------------------------------------- /static/css/fontawesome.all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/css/fontawesome.all.min.css -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/images/carousel1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/images/carousel1.jpg -------------------------------------------------------------------------------- /static/images/carousel2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/images/carousel2.jpg -------------------------------------------------------------------------------- /static/images/carousel3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/images/carousel3.jpg -------------------------------------------------------------------------------- /static/images/carousel4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/images/carousel4.jpg -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/js/bulma-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/js/bulma-carousel.js -------------------------------------------------------------------------------- /static/js/bulma-carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/js/bulma-carousel.min.js -------------------------------------------------------------------------------- /static/js/bulma-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/js/bulma-slider.js -------------------------------------------------------------------------------- /static/js/bulma-slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/js/bulma-slider.min.js -------------------------------------------------------------------------------- /static/js/fontawesome.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/js/fontawesome.all.min.js -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/js/index.js -------------------------------------------------------------------------------- /static/pdfs/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/pdfs/sample.pdf -------------------------------------------------------------------------------- /static/videos/banner_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/videos/banner_video.mp4 -------------------------------------------------------------------------------- /static/videos/carousel1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/videos/carousel1.mp4 -------------------------------------------------------------------------------- /static/videos/carousel2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/videos/carousel2.mp4 -------------------------------------------------------------------------------- /static/videos/carousel3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepTag/cardiac_tagging_motion_estimation/HEAD/static/videos/carousel3.mp4 --------------------------------------------------------------------------------