An R Port of the ImageJ Plugin Auto Threshold (original) (raw)
autothresholdr
provides algorithms for automatically finding appropriate thresholds for numerical data, with special functions for thresholding images. It does this by porting ImageJ “Auto Threshold” plugin functionality to R.
The github repo of autothresholdr
is at https://github.com/rorynolan/autothresholdr.
Installation
You can install the release version of autothresholdr
from CRAN with:
You can install the development version of autothresholdr
from GitHub with:
devtools::install_github("rorynolan/autothresholdr")
How to use the package
The following articles contain all you need to get going:
- Finding Thresholds demonstrates how to find thresholds for arbitrary non-negative integer data.
- Thresholding Images shows how to threshold single-frame, grayscale images.
- Thresholding Image Stacks shows a couple of approaches for thresholding multi-frame, grayscale images.