Perform super-resolution (2x) of MRI data using deep back projection network.

mriSuperResolution(image, antsxnetCacheDirectory = NULL, verbose = FALSE)

Arguments

image

magnetic resonance image

antsxnetCacheDirectory

destination directory for storing the downloaded template and model weights. Since these can be resused, if is.null(antsxnetCacheDirectory), these data will be downloaded to the inst/extdata/ subfolder of the ANTsRNet package.

verbose

print progress.

Value

super-resolution image.

Author

Avants BB

Examples

if (FALSE) { library( ANTsRNet ) image <- antsImageRead( "t1.nii.gz" ) imageSr <- mriSuperResolution( image ) }