equalize {EBImage} | R Documentation |
Equalize the histogram of an image.
equalize(x)
x |
An |
The algorithm used by this ImageMagick function is not well defined.
An Image
object or an array, containing the transformed version
of x
.
Oleg Sklyar, osklyar@ebi.ac.uk, 2006-2007
ImageMagick: http://www.imagemagick.org.
x = readImage(system.file("images", "lena.gif", package="EBImage")) if (interactive()) display(x) y = equalize(x) if (interactive()) display(y, title='equalize(x)')