hullFeatures             package:EBImage             R Documentation

_E_x_t_r_a_c_t_i_o_n _o_f _h_u_l_l _f_e_a_t_u_r_e_s _f_r_o_m _i_m_a_g_e_s _o_f _i_n_d_e_x_e_d _o_b_j_e_c_t_s

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

     Hull features are a set of numeric descriptors of the hull of an
     object. These include coordinates, perimeter, size, acircularity
     etc.

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

       ## S4 method for signature 'IndexedImage':
       hullFeatures(x, ...)
       

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

       x: An object of 'IndexedImage'.

     ...: Reserved. 

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

     The extracted features are (names carry an 'h.' prefix to indicate
     hull features): 'x,y' - coordinates of the geometric center, 's' -
     size (area), 'p' - perimeter, 'pdm' - mean distance to perimeter
     (from the center), 'pdsd' - standard deviation of the distance to
     perimeter, 'effr' -  effective radius (is the radius of a circle
     with the same area), 'acirc' - acircularity (fraction of pixels
     outside of the circle with 'r=reff'),  'sf' - shape factor ('per /
     ( 2 * sqrt(Pi * s))'), 'edge' -  number of pixels at the edge of
     the image, 'theta' - hull's rotation angle (calculated without
     taking intensity values into account), 's2maj' - 2 times semi
     major (square root of the larger eigenvalue of the  'moments'
     covariance matrix) - correlates with the distance from the center
     to the edge along the major axis, 's2min' - same but for the 
     smaller eigenvalue (minor axis), 'ecc' - eccentricity 
     ('sqrt(eig1-eig2)/smaj'), 'I1, I2' - first and second rotation
     invariant moments of the hull (as in 'moments').

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

     For a single frame, a matrix of descriptors with objects in rows
     and features in columns. For image stacks, a list of such
     matrices.

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

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

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

     ' IndexedImage, watershed, getFeatures,  edgeFeatures, moments '

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

       ## see example(getFeatures)

