tile                 package:EBImage                 R Documentation

_G_e_n_e_r_a_t_e _a _t_i_l_e_d _i_m_a_g_e _f_r_o_m _a _s_t_a_c_k _o_f _i_m_a_g_e_s

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

     Given an image stack (or a list of such those), 'tile' generates
     for each stack a single image with frames tiled.

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

       ## S4 method for signature 'Image':
       tile(x, nx=10, lwd=1, fg.col="#E4AF2B", bg.col="gray", ...)
       ## S4 method for signature 'list':
       tile(x, nx=10, lwd=1, fg.col="#E4AF2B", bg.col="gray", ...)

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

       x: An object of 'Image' or a list of such objects. Images must
          be grayscale and carry object indexing information, like
          those returned by 'watershed' or 'propagate'. 

      nx: The number of tiled images in a row. 

     lwd: The width of the grid lines between tiled images, can be 0. 

  fg.col: The color of the grid lines (if 'lwd > 0'). This will be
          converted to Grayscale if the color mode of 'x' is
          'Grayscale'. 

  bg.col: The color of the background for extra tiles. This will be
          converted to Grayscale if the color mode of 'x' is
          'Grayscale'. 

     ...: Reserved. 

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

     The function for 'x=list' is a useful addition to 'stackObjects',
     which returns a list of stacks, thus it can be directly used on
     the result of the latter.

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

     An image of the same class and in the same color mode as 'x'.

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

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

_S_e_e _A_l_s_o:

     ' stackObjects, combine '

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

       ## see example(stackObjects)

