R/reapply_malf.R

Defines functions reapply_malf

Documented in reapply_malf

#' @title Reapply MALF Operation
#'
#' @description Takes in an input file, set of registrations, 
#' and a set of template structures and applies the registrations,
#' with a different interpolator if necessary, and then combines output
#' @param infile Input Image file
#' @param regs List of registrations from \code{\link{malf}} or 
#' \code{\link{malf_registration}}, each element must have 
#' \code{fwdtransforms} and \code{interpolator}. Same length as 
#' \code{template.structs} 
#' @param template.structs Template gold standards to apply 
#' registration into \code{infile} space
#' @param keep_images Keep the \code{template.structs} in 
#' \code{infile} space
#' @param outfiles Output filenames for  \code{template.structs} in 
#' \code{infile} space
#' @param outfile Fused output filename
#' @param retimg Return Image to user using \code{\link{readnii}}
#' @param func function to combine labels.  See \code{\link{stat_img}}.
#' @param ties.method If \code{func = "mode"}, then this is passed to 
#' \code{\link{stat_img}}.  
#' @param interpolator interpolation done for 
#' \code{\link{antsApplyTransforms}}, can be different than original MALF
#' @param verbose Print diagnostic output
#' @param ... Arguments to be passed to \code{\link{ants_apply_transforms}}
#' @export
#' @return The output filename or the nifti image or list of registrations and
#' output file
reapply_malf <- function(
  infile,
  regs,
  template.structs,
  keep_images = FALSE, 
  outfiles = NULL,  
  outfile = NULL, 
  retimg = TRUE,
  func = "mode",
  ties.method = "first",
  interpolator = NULL,
  verbose = TRUE,
  ...){
  
  ofiles = apply_malf_regs(
    infile = infile,
    regs = regs,
    template.structs = template.structs,
    keep_images = keep_images, 
    outfiles = outfiles,
    interpolator = interpolator,
    verbose = verbose > 1,
    ...)
  
  if (verbose) {
    message("# Reading in Files\n")
  }
  if (func == "mode") {
    outimg = stat_img(imgs = ofiles, 
                      func = func, ties.method = ties.method)
  } else {
    outimg = stat_img(imgs = ofiles, func = func)
  }
  rm(list = "infile"); gc();
  
  
  if (!is.null(outfile)) {
    if (is.nifti(outimg)) {
      writenii(outimg, filename = outfile[1])
    } 
    if (is.list(outimg)) {
      if (length(outimg) != length(outfile)) {
        warning(paste0("Length of outfiles not ", 
                       "the same as outimg,", 
                       " setting retimg = TRUE"))
        retimg = TRUE
      } else {
        mapply(function(img, fname) {
          writenii(img, filename = fname)
        }, outimg, outfile)
      }
    }
  }
  
  for (i in 1:10) {
    gc()
  }
  if (retimg) {
    return(outimg)
  } else {
    return(outfile)
  }
  stop("Shouldn't be here - bug?")  
}
neuroconductor/extrantsr documentation built on Sept. 28, 2020, 11:31 a.m.