--- title: "Running WhiteStripe on T1- and T2-weighted Imaging" author: "John Muschelli" date: "`r Sys.Date()`" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Running WhiteStripe on T1- and T2-weighted Imaging} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- # Downloading the data First, we would like to make sure we have some data to work with. The data is not located directly in the installed package to make it lightweight and some other repository restrictions. To download the test data, we will use the WhiteStripe function `download_img_data`: ```{r dl_data, eval = FALSE} library(WhiteStripe) download_img_data() ``` ```{r dl_data_run, echo = FALSE, eval = TRUE} lib.loc = tempdir() library(WhiteStripe) download_img_data(lib.loc = lib.loc) ``` ## Getting the filenames Once the data is downloaded, we can access the files using the `ws_img_data` function: ```{r get_data, eval = FALSE} files = ws_img_data() ``` ```{r get_data_run, echo = FALSE, eval = TRUE} files = ws_img_data(lib.loc = lib.loc) ``` # Reading in the data We will focus on the T1-weighted image here: ```{r t1} library(oro.nifti) t1 = files[grep("T1", basename(files))] img = readNIfTI(fname = t1, reorient = FALSE) ``` ## Displaying the data Here we will display the data in 3-dimensions and note that it is a skull-stripped image: ```{r} orthographic(img) ``` ```{r hist} vals = img[img > 0] hist(vals, breaks = 2000) ``` Here we see the distribution of non-zero values. We use `2000` breaks, as this is the default in `whitestripe`. For `T1` images, `whitestripe` will use the last mode (intensity around `85`) in this data. # Running WhiteStripe Since the image is skull stripped, we will set `stripped = TRUE` in the `whitestripe` function: ```{r ws} ws = whitestripe(img = img, type = "T1", stripped = TRUE) names(ws) ``` We see the progress points and the names of the output. This returns the indices of the whitestripe and a `mask.img` element, which is used to normalize the image: ```{r norm_ws} norm = whitestripe_norm(img = img, indices = ws$whitestripe.ind) ``` ## Displaying the output ### Location of the white stripe We can visualize the mode selected and the white stripe: ```{r print_ws} hist(vals, breaks = 2000) abline(v = ws$mu.whitestripe, col = "blue") abline(v = ws$whitestripe, col = "red") ``` Here we see the blue line for the mode and the red lines for the voxel intensities within the white stripe. ### White stripe mask We can also overlay the mask used for the white stripe: ```{r ortho_overlay} mask = ws$mask.img mask[mask == 0] = NA orthographic(x = img, y = mask, col.y = "red") ``` We see white matter selected, but the fact that more values within the posterior compared to the anterior part of the brain may indicate a inhomogeneity correction needs to be applied before running `whitestripe`. ### Normalized intensities ```{r norm_hist} norm_vals = norm[img > 0] hist(norm_vals, breaks = 2000) ``` # Conclusion Here is a brief overview of the functionality of the WhiteStripe package. Additional information requests are welcome to the bug report/issue page.