All Projects → biomedia-mira → istn

biomedia-mira / istn

Licence: Apache-2.0 License
Image-and-Spatial Transformer Networks

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to istn

RNiftyReg
An R interface to the NiftyReg medical image registration library
Stars: ✭ 32 (-62.79%)
Mutual labels:  medical-imaging, image-registration
VoxelMorph-PyTorch
An unofficial PyTorch implementation of VoxelMorph- An unsupervised 3D deformable image registration method
Stars: ✭ 68 (-20.93%)
Mutual labels:  image-registration, spatial-transformer-networks
FAIR.m
Flexible Algorithms for Image Registration
Stars: ✭ 103 (+19.77%)
Mutual labels:  medical-imaging, image-registration
BIRL
BIRL: Benchmark on Image Registration methods with Landmark validations
Stars: ✭ 66 (-23.26%)
Mutual labels:  medical-imaging, image-registration
dataset-histology-landmarks
Dataset: landmarks for registration of histology images
Stars: ✭ 26 (-69.77%)
Mutual labels:  medical-imaging, image-registration
ACRN Chest X-ray IA
Learning Deformable Registration of Medical Images with Anatomical Constraints
Stars: ✭ 18 (-79.07%)
Mutual labels:  image-registration
matlab elastix
MATLAB Elastix wrapper
Stars: ✭ 21 (-75.58%)
Mutual labels:  image-registration
Musculoskeletal-Radiographs-Abnormality-Classifier
An implementation of MURA Dataset Towards Radiologist-Level Abnormality Detection in Musculoskeletal Radiographs
Stars: ✭ 37 (-56.98%)
Mutual labels:  medical-imaging
LibAUC
An End-to-End Machine Learning Library to Optimize AUC (AUROC, AUPRC).
Stars: ✭ 115 (+33.72%)
Mutual labels:  medical-imaging
AE-CNN
ICVGIP' 18 Oral Paper - Classification of thoracic diseases on ChestX-Ray14 dataset
Stars: ✭ 33 (-61.63%)
Mutual labels:  medical-imaging
XNet
CNN implementation for medical X-Ray image segmentation
Stars: ✭ 71 (-17.44%)
Mutual labels:  medical-imaging
mri-deep-learning-tools
Resurces for MRI images processing and deep learning in 3D
Stars: ✭ 56 (-34.88%)
Mutual labels:  medical-imaging
Dermatron
Dermatology focused medical records software, augmented with computer vision and artificial intelligence [Meteor packaged with Electron]
Stars: ✭ 19 (-77.91%)
Mutual labels:  medical-imaging
visualqc
VisualQC : assistive tool to ease the quality control workflow of neuroimaging data.
Stars: ✭ 56 (-34.88%)
Mutual labels:  medical-imaging
neurdicom
RESTful PACS server with plugins
Stars: ✭ 97 (+12.79%)
Mutual labels:  medical-imaging
PETPVC
Partial Volume Correction in PET
Stars: ✭ 29 (-66.28%)
Mutual labels:  medical-imaging
Fourier-Analysis-Digital-Images
Fourier analysis applications for image matching.
Stars: ✭ 18 (-79.07%)
Mutual labels:  image-registration
COVID-19-AI
Collection of AI resources to fight against Coronavirus (COVID-19)
Stars: ✭ 25 (-70.93%)
Mutual labels:  medical-imaging
Image-Restoration
Image registration using pytorch
Stars: ✭ 26 (-69.77%)
Mutual labels:  image-registration
coursera-ai-for-medicine-specialization
Programming assignments, labs and quizzes from all courses in the Coursera AI for Medicine Specialization offered by deeplearning.ai
Stars: ✭ 80 (-6.98%)
Mutual labels:  medical-imaging

ISTN

Image-and-Spatial Transformer Networks

Image-and-Spatial Transformer Networks for Structure-guided Image Registration

We introduce a novel, generic, learning-based image registration framework, Image-and-Spatial Transformer Networks, to leverage Structures-of-Interest information allowing us to learn new image representations that are optimised for the downstream registration task. Thanks to these representations we can employ a test-specific, iterative refinement over the transformation parameters which yields highly accurate registration even with very limited training data.

The work has been accepted at MICCAI 2019. If you make use of the code, please cite the paper in any resulting publications:

@inproceedings{lee2019istn,
    author = {Lee, Matthew C.H. and Oktay, Ozan and Schuh, Andreas and Schaap, Michiel and Glocker, Ben},
    title = {Image-and-Spatial Transformer Networks for Structure-guided Image Registration},
    year = {2019},
    booktitle = {International Conference on Medical Image Computing and Computer Assisted Intervention (MICCAI)}
}

Setup

To install requirements run

pip install -r requirements.txt

Demo with 2D synthetic data

Data

To unzip the 2D synthetic data used in the paper, from the parent directory run

unzip data/synth2d/unzip_here.zip -d data/synth2d/

Running ISTNs

To run a 2D experirment with an implicit ISTN on the synthetic data run

python istn-reg.py --config data/synth2d/config.json --transformation affine --loss i --out output/istn-i --model output/istn-i/train/model

--loss controls the type of training strategy as described in the paper, options are

u - unsupervised s - supervised e - explicit i - implicit

Monitoring Training with Tensorboard

Tensorboard logs are placed in {{--out}}/tensorboard, to fire up tensorboard you can run

tensorboard --logdir {{--out}}

If you installed tensoboard using pip, you may not be able to call it as above as. You can find its installation location by running

pip show tensoboard

Then you can run

python tensorboard/location/main.py --logdir {{--out}}

Models are saved under {{--out}}/train, once training is complete test results are found processed and put into {{--out}}/test

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].