Described here:

claustrumSegmentation(
  t1,
  doPreprocessing = TRUE,
  useEnsemble = TRUE,
  antsxnetCacheDirectory = NULL,
  verbose = FALSE
)

Arguments

t1

input 3-D T1-weighted brain image.

doPreprocessing

perform n4 bias correction, denoising?

useEnsemble

boolean to check whether to use all 3 sets of weights.

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

claustrum probability image

Details

\url{https://pubmed.ncbi.nlm.nih.gov/34520080/}

with the implementation available at:

\url{https://github.com/hongweilibran/claustrum_multi_view}

Author

Tustison NJ

Examples

if (FALSE) { library( ANTsRNet ) library( keras ) image <- antsImageRead( "t1.nii.gz" ) probabilityMask <- claustrumSegmentation( image ) }