getBrightness: The brighness map of an image (0 to 1).

Description Usage Arguments Value See Also Examples

View source: R/getBrightness.R

Description

The brighness map of an image (0 to 1).

Usage

1
getBrightness(rgbArray)

Arguments

rgbArray

RGB array (W x H x 3) where the third dimension contains R, G and B channels, values varying from 0 to 1.

Value

a numeric matrix (W x H) giving the brightness for each pixel of the image.

See Also

getDarkness, getContrast and getHazeFactor

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
library(jpeg)

img <- readJPEG(system.file("img", "Rlogo.jpg", package="jpeg"))

b <- getBrightness(img)

par(mfrow=c(2,1), mar = c(0.5, 1, 0.5, 1))

plotRGBArray(img)
plotRGBArray(b)

bnasr/hazer documentation built on May 3, 2019, 4:31 p.m.