-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathREADME.Rmd
More file actions
73 lines (52 loc) · 2.14 KB
/
README.Rmd
File metadata and controls
73 lines (52 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# SAFARI
<!-- badges: start -->
<!-- badges: end -->
The R package **SAFARI** (**S**hape **A**nalysis **f**or **A**I-Reconstructed **I**mages) provides functions for reading, preprocessing, segmenting ROI, and extracting shape-based features in AI-reconstructed images.
## Description
**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.
## Installation
You may install the latest released version on CRAN by
```{r install, eval=FALSE}
install.packages("SAFARI")
```
## Development
The latest version of the package is under development at [GitHub](https://github.com/estfernandez/SAFARI). One may install it by
```{r development, eval=FALSE}
## install.packages("devtools")
devtools::install_github("estfernandez/SAFARI")
```
## Dependencies
This package requires the use of `EBImage` from the
[Bioconductor](https://bioconductor.org/packages/release/bioc/html/EBImage.html)
project. One must install this package by
```{r depend, eval=FALSE}
## install.packages("BiocManager")
BiocManager::install("EBImage")
```
## Get Started
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 and an online tool available at <https://lce.biohpc.swmed.edu/safari/>.
```{r examples, eval=FALSE}
library(SAFARI)
?read.image # read and preprocess reconstructed image
?binary.segmentation # segmentation procedure
?compute.features # feature extraction for an individual ROI
?rc.plot # visualize binary or segmented images
```
## License
[GNU General Public License](https://www.gnu.org/licenses/) (≥ 3)