tile                 package:EBImage                 R Documentation

_T_i_l_i_n_g/_u_n_t_i_l_i_n_g _i_m_a_g_e_s

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

     Given a sequence of frames, 'tile' generates a single image with
     frames tiled. 'untile' is the inverse function and divides an
     image into a sequence of images.

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

       tile(x, nx=10, lwd=1, fg.col="#E4AF2B", bg.col="gray")
       untile(x, nim, lwd=1)

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

       x: An 'Image' object, an array or a list of these objects.

      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.

  bg.col: The color of the background for extra tiles.

     nim: A numeric vector of 2 elements for the number of images in
          both directions.

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

     After object segmentation, 'tile' is a useful addition to
     'stackObjects' to have an overview of the segmented objects.

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

     An 'Image' object or an array, containing the tiled/untiled
     version of 'x'.

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

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

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

     'stackObjects'

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

       ## make a set of blurred Lenas
       lena = readImage(system.file("images", "lena-color.png", package="EBImage"))
       x = resize(lena, 128, 128)
       xt = list()
       for (t in seq(0.1, 5, len=9)) xt=c(xt, list(blur(x, s=t)))
       xt = combine(xt)
       if (interactive()) display(xt, title='Blurred Lenas')

       ## tile
       xt = tile(xt, 3)
       if (interactive()) display(xt, title='Tiled Lenas')

       ## untile
       xu = untile(lena, c(3, 3))
       if (interactive()) display(xu, title='Lena blocks')

