getContrast {hazer} | R Documentation |
The contrast map of an image (0 to 1).
getContrast(rgbArray)
rgbArray |
RGB array (W x H x 3) where the third dimension contains R, G and B channels, values varying from 0 to 1. |
a numeric matrix (W x H) giving the contrast for each pixel of the image.
getDarkness
, getBrightness
and getHazeFactor
library(jpeg)
img <- readJPEG(system.file("img", "Rlogo.jpg", package="jpeg"))
c <- getContrast(img)
par(mfrow=c(2,1), mar = c(0.5, 1, 0.5, 1))
plotRGBArray(img)
plotRGBArray(c)