View source: R/whiteMatterHyperintensitySegmentation.R
sysuMediaWmhSegmentation | R Documentation |
Perform WMH segmentation using the winning submission in the MICCAI 2017 challenge by the sysu_media team using FLAIR or T1/FLAIR. The MICCAI challenge is discussed in
sysuMediaWmhSegmentation(flair, t1 = NULL, useEnsemble = TRUE, verbose = FALSE)
flair |
input 3-D FLAIR brain image. |
t1 |
input 3-D T1-weighted brain image (assumed to be aligned to the flair, if specified). |
useEnsemble |
boolean to check whether to use all 3 sets of weights. |
verbose |
print progress. |
https://pubmed.ncbi.nlm.nih.gov/30908194/
with the sysu_media's team entry is discussed in
https://pubmed.ncbi.nlm.nih.gov/30125711/
with the original implementation available here:
\url{https://github.com/hongweilibran/wmh_ibbmTum}
The original implementation used global thresholding as a quick brain extraction approach. Due to possible generalization difficulties, we leave such post-processing steps to the user. For brain or white matter masking see functions brainExtraction or deepAtropos, respectively.
WMH segmentation probability image
Tustison NJ
## Not run:
library( ANTsRNet )
library( keras )
image <- antsImageRead( "flair.nii.gz" )
probabilityMask <-sysuMediaWmhSegmentation( image )
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.