The following templates are used in the current version of RheMAP:
- NMT v1.2 (source link)
- NMT v1.3 (source link)
- NMT v2.0 (source link)
- D99 (source link)
- INIA19 (source link0
- MNI (source link)
- Yerkes19 (source link)
We do not provide copies of the actual templates since licenses often do not allow redistribution. Instead, we suggest you follow the links above and get the templates at the source. We do offer the warp files and warped templates that will be produced by RheMAP. They can be downloaded from Zenodo (DOI:10.5281/zenodo.3668510).
Based on these warps and warped teamplates you could of course reconstruct the original template using something like:
On the command line:
antsApplyTransforms -i <TEMPLATE1_in_TEMPLATE2_composite.nii.gz> \
-r <TEMPLATE2_in_TEMPLATE1.nii.gz> \
-o <RECONSTRUCTED_ORIGINAL_TEMPLATE1.nii.gz> \
-t [<TEMPLATE1_to_TEMPLATE2_CompositeWarp>,1] \
-n Linear \
-d 3
In NiPype:
import nipype.interfaces.ants as ants
ants.ApplyTransforms(
input_image=<TEMPLATE1_in_TEMPLATE2_composite.nii.gz>,
reference_image=<TEMPLATE2_in_TEMPLATE1.nii.gz>,
output_image=<RECONSTRUCTED_ORIGINAL_TEMPLATE1.nii.gz>,
transforms=<TEMPLATE1_to_TEMPLATE2_CompositeWarp>,
invert_transform_flags=True,
interpolation='Linear',
dimension=3)