The R package SAFARI (Shape Analysis for AI-Reconstructed Images) provides functions for reading, preprocessing, segmenting ROI, and extracting shape-based features in AI-reconstructed images.
SAFARI is an R package that consists of a collection of functions for image processing and shape analysis. The available functions allow users to segment regions of interest and extract quantitative shape descriptors in AI-reconstructed images, especially those produced from medical imaging modalities.
The latest version of the package is under development at GitHub. One may install it by
## install.packages("devtools")
::install_github("estfernandez/SAFARI") devtools
This package requires the use of EBImage
from the Bioconductor
project. One must install this package by
## install.packages("BiocManager")
::install("EBImage") BiocManager
Examples are provided for the main functions. One may get started from those examples and the function documentation. We also provide a command-line tool for applications in the terminal.
library(SAFARI)
# read and preprocess reconstructed image
?read.image # segmentation procedure
?binary.segmentation # feature extraction for an individual ROI
?compute.features # visualize binary or segmented images ?rc.plot