equalize               package:EBImage               R Documentation

_H_i_s_t_o_g_r_a_m _e_q_u_a_l_i_z_a_t_i_o_n

_D_e_s_c_r_i_p_t_i_o_n:

     Equalize the histogram of an image.

_U_s_a_g_e:

       equalize(x)

_A_r_g_u_m_e_n_t_s:

       x: An 'Image' object or an array.

_D_e_t_a_i_l_s:

     The algorithm used by this ImageMagick function is not well
     defined.

_V_a_l_u_e:

     An 'Image' object or an array, containing the transformed version
     of 'x'.

_A_u_t_h_o_r(_s):

     Oleg Sklyar, osklyar@ebi.ac.uk, 2006-2007

_R_e_f_e_r_e_n_c_e_s:

     _ImageMagick_: <URL: http://www.imagemagick.org>.

_E_x_a_m_p_l_e_s:

       x = readImage(system.file("images", "lena.gif", package="EBImage"))
       if (interactive()) display(x)
       
       y = equalize(x)
       if (interactive()) display(y, title='equalize(x)')

