Samiksha Jaiswal (Editor)

Summed area table

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Summed area table

A summed area table is a data structure and algorithm for quickly and efficiently generating the sum of values in a rectangular subset of a grid. In the image processing domain, it is also known as an integral image. It was introduced to computer graphics in 1984 by Frank Crow for use with mipmaps. In computer vision it was popularized by Lewis and then given the name "integral image" and prominently used within the Viola–Jones object detection framework in 2001. Historically, this principle is very well known in the study of multi-dimensional probability distribution functions, namely in computing 2D (or ND) probabilities (area under the probability distribution) from the respective cumulative distribution functions.

Contents

The algorithm

As the name suggests, the value at any point (xy) in the summed area table is just the sum of all the pixels above and to the left of (xy), inclusive:

I ( x , y ) = x x y y i ( x , y )

Moreover, the summed area table can be computed efficiently in a single pass over the image, using the fact that the value in the summed area table at (xy) is just]:

I ( x , y ) = i ( x , y ) I ( x 1 , y 1 ) + I ( x , y 1 ) + I ( x 1 , y )

Once the summed area table has been computed, the task of evaluating the intensities over any rectangular area requires only four array references. This allows for a constant calculation time that is independent of the size of the rectangular area. That is, the notation in the figure at right, having A=(x0, y0), B=(x1, y0), C=(x0, y1) and D=(x1, y1), the sum of i(x,y) over the rectangle spanned by A, B,C and D is:

x 0 < x x 1 y 0 < y y 1 i ( x , y ) = I ( D ) + I ( A ) I ( B ) I ( C )

Extensions

  • This method is naturally extended to continuous domains.
  • The method can be also extended to high-dimensional images. If the corners of the rectangle are x p with p in { 0 , 1 } d , then the sum of image values contained in the rectangle are computed with the formula
  • p { 0 , 1 } d ( 1 ) d p 1 I ( x p )

    where I ( x ) is the integral image at x and d the image dimension. The notation x p correspond in the example to d = 2 , A = x ( 0 , 0 ) , B = x ( 1 , 0 ) , C = x ( 1 , 1 ) and D = x ( 0 , 1 ) . In neuroimaging, for example, the images have dimension d = 3 or d = 4 , when using voxels or voxels with a time-stamp.

  • This method has been extended to high-order integral image as in the work of Phan et al. who provided two, three, or four integral images for quickly and efficiently calculating the standard deviation (variance), skewness, and kurtosis of local block in the image. This is detailed below:
  • To compute variance or standard deviation of a block, we need two integral images:

    I ( x , y ) = x x y y i ( x , y ) I 2 ( x , y ) = x x y y i 2 ( x , y )

    The variance is given by:

    Var ( X ) = 1 n i = 1 n ( x i μ ) 2 .

    Let S 1 and S 2 denote the summations of block A B C D of I and I 2 , respectively. S 1 and S 2 are computed quickly by integral image. Now, we manipulate the variance equation as:

    Var ( X ) = 1 n i = 1 n ( x i 2 2 μ x i + μ 2 ) = 1 n ( i = 1 n ( x i ) 2 2 i = 1 n ( μ x i ) + i = 1 n ( μ 2 ) ) = 1 n ( i = 1 n ( x i ) 2 2 i = 1 n ( μ x i ) + n ( μ 2 ) ) = 1 n ( i = 1 n ( x i ) 2 2 μ i = 1 n ( x i ) + n ( μ 2 ) ) = 1 n ( S 2 2 S 1 / n S 1 + n ( ( S 1 / n ) 2 ) ) = 1 n ( S 2 ( S 1 ) 2 / n )

    Where μ = S 1 / n and S 2 = i = 1 n ( x i 2 ) .

    Similar to the estimation of the mean ( μ ) and variance ( V a r ), which requires the integral images of the first and second power of the image respectively (i.e. I , I 2 ); manipulations similar to the ones mentioned above can be made to the third and fourth powers of the images (i.e. I 3 ( x , y ) , I 4 ( x , y ) .) for obtaining the skewness and kurtosis. But one important implementation detail that must be kept in mind for the above methods, as mentioned by F Shafait et al. is that of integer overflow occurring for the higher order integral images in case 32-bit integers are used.

    References

    Summed area table Wikipedia


    Similar Topics