Nothing
#' @title Image Standard Deviation
#' @description Estimates Standard Deviation of Image from FSL
#' @param img Object of class nifti, or path of file
#' @param nonzero (logical) Should the statistic be taken over non-zero voxels
#' @param verbose (logical) print out command before running
#' @param ts (logical) is the series a timeseries (4D), invoking \code{-t}
#' option
#' @note This uses option -s or -S in \code{\link{fslstats}}
#' @return Vector of unless ts option invoked, then matrix
#' @export
fslsd = function(img, nonzero = FALSE, verbose = TRUE, ts = FALSE){
opts = "-s"
opts = ifelse(nonzero, toupper(opts), opts)
val = fslstats(img, opts = opts, verbose = verbose, ts = ts)
val = strsplit(val, " ")
if (length(val) == 1) {
val = as.numeric(val[[1]])
} else {
val = sapply(val, as.numeric)
}
val
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.