Nothing
#' @title Perform OR/Union operation on Images using FSL
#' @description This function calls \code{fslmaths file -add file2 -bin}
#' after binarizing \code{file} and \code{file2} using
#' \code{\link{fslbin}}.
#' @param file (character) input image
#' @param file2 (character) image to be unioned
#' @param outfile (character) resultant image name (optional)
#' @param retimg (logical) return image of class nifti
#' @param reorient (logical) If retimg, should file be reoriented
#' when read in?
#' Passed to \code{\link{readnii}}.
#' @param intern (logical) to be passed to \code{\link{system}}
#' @param ... additional arguments passed to \code{\link{readnii}}.
#' @return If \code{retimg} then object of class nifti. Otherwise,
#' Result from system command, depends if intern is TRUE or FALSE.
#' @export
fslor = function(
file,
file2,
outfile = NULL,
retimg = TRUE,
reorient = FALSE,
intern = FALSE,
...){
file = fsl_bin(file, retimg = FALSE)
file2 = fsl_bin(file2, retimg = FALSE)
res = fsl_add(
file = file,
file2 = file2,
...)
res = fslbin(
file = res,
outfile = outfile,
retimg = retimg,
reorient = reorient,
intern = intern,
...)
return(res)
}
#' @rdname fslor
#' @aliases fsl_or
#' @export
#' @note Functions with underscores have different defaults
#' and will return an output filename, so to be used for piping
fsl_or = function(
...,
outfile = tempfile(fileext = ".nii.gz"),
retimg = FALSE
) {
fslor(..., outfile = outfile, retimg = retimg)
return(outfile)
}
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.