R/vesselness3D.R

#' @title 3D Volume Vesselness
#' @description This function returns a vesselness map for a 3D array or NIfTI volume. This vesseless measure is based on the method described by Frangi (1998).
#' @param image a 3D array or image of class \code{\link{nifti}}
#' @param mask an array or \code{\link{nifti}} mask of voxels for which vesselness will be calculated,
#' with more selective masking improving speed significantly.
#' Note that mask should be in the same space as the image volume
#' @param radius an integer specifying radius of the neighborhood (in voxels) for which the vesselness should be calculated.
#' Note that this value essentially serves as the scale of the vessel objects
#' @param color a string specifying whether vessels will appear darker ("dark") or brighter ("bright") than their surroundings
#' @param parallel is a logical value that indicates whether the user's computer
#' is Linux or Unix (i.e. macOS), and should run the code in parallel
#' @param cores if parallel = TRUE, cores is an integer value that indicates how many cores
#' the function should be run on
#'
#' @return A 3D volume of the Frangi vesselness scores.
#' @examples \dontrun{
#' library(neurobase)
#' epi <- readnii('path/to/epi')
#' mask <- epi!=0
#' veins <- vesselness3D(image = epi, mask = mask, radius = 1,
#'                       color = "dark", parallel = TRUE, cores = 4) }
#' @export
#' @references A.F. Frangi, W.J. Niessen, K.L. Vincken, M.A. Viergever (1998). Multiscale vessel enhancement filtering. In Medical Image Computing and Computer-Assisted Intervention - MICCAI'98, W.M. Wells, A. Colchester and S.L. Delp (Eds.), Lecture Notes in Computer Science, vol. 1496 - Springer Verlag, Berlin, Germany, pp. 130-137.
vesselness3D=function(image, mask, radius = 1, color = "dark", parallel = FALSE, cores = 2){

  eigvals=hessian3D(image,mask,radius,parallel,cores)

  print("Calculating vesselness measure")
  l1=eigvals$eigval1
  l2=eigvals$eigval2
  l3=eigvals$eigval3
  l1=as.vector(l1[mask==1])
  l2=as.vector(l2[mask==1])
  l3=as.vector(l3[mask==1])
  rm(eigvals)

  al1=abs(l1)
  al2=abs(l2)
  al3=abs(l3)

  Ra=al2/al3
  Ra[!is.finite(Ra)]<-0
  Rb=al1/sqrt(al2*al3)
  Rb[!is.finite(Rb)]<-0

  S=sqrt(al1^2 + al2^2 + al3^2)
  A=2*(.5^2)
  B=2*(.5^2)
  C=2*(.5*max(S))^2

  rm(al1,al2,al3)

  eA=1-exp(-(Ra^2)/A)
  eB=exp(-(Rb^2)/B)
  eC=1-exp(-(S^2)/C)

  rm(Ra,Rb,S,A,B,C)

  vness=eA*eB*eC

  rm(eA,eB,eC)

  if(color=="dark"){
    vness[l2<0 | l3<0] = 0
    vness[!is.finite(vness)] = 0
  }else if(color=="bright"){
    vness[l2>0 | l3>0] = 0
    vness[!is.finite(vness)] = 0
  }

  image[mask==1]<-vness
  return(image)
}

Try the vesselr package in your browser

Any scripts or data that you put into this service are public.

vesselr documentation built on May 2, 2019, 5:11 a.m.