View source: R/mriSuperResolution.R
mriSuperResolution | R Documentation |
Perform super-resolution of MRI data using deep back projection network. Work described in
https://www.medrxiv.org/content/10.1101/2023.02.02.23285376v1
with the GitHub repo located at https://github.com/stnava/siq
Note that some preprocessing possibilities for the input includes:
Truncate intensity (see ants.iMath(..., 'TruncateIntensity', ...)
mriSuperResolution(
image,
expansionFactor = c(1, 1, 2),
feature = "vgg",
targetRange = c(1, 0),
polyOrder = "hist",
verbose = FALSE
)
image |
magnetic resonance image |
expansionFactor |
Specifies the increase in resolution per
dimension. Possibilities include: |
feature |
"grader" or "vgg" |
targetRange |
Range for applySuperResolutionModel. |
polyOrder |
int or the string 'hist'. Parameter for regression matching or specification of histogram matching. |
verbose |
print progress. |
super-resolution image.
Avants BB
## Not run:
library( ANTsRNet )
image <- antsImageRead( "t1.nii.gz" )
imageSr <- mriSuperResolution( image )
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.