Learn R Programming

OpenImageR (version 1.3.0)

image_thresholding: image thresholding

Description

image thresholding

Usage

image_thresholding(image, thresh)

Value

a matrix

Arguments

image

matrix or 3-dimensional array where the third dimension is equal to 3

thresh

the threshold parameter should be between 0 and 1 if the data is normalized or between 0-255 otherwise

Author

Lampros Mouselimis

Details

This function applies thresholding to a matrix or to a 3-dimensional array where the third dimension is equal to 3.

Examples

Run this code

path = system.file("tmp_images", "1.png", package = "OpenImageR")

image = readImage(path)

filt = image_thresholding(image, thresh = 0.5)

Run the code above in your browser using DataLab