Summed area table

From Infogalactic: the planetary knowledge core
(Redirected from Integral image)
Jump to: navigation, search

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 first introduced to computer graphics in 1984 by Frank Crow for use with mipmaps. In computer vision it was first prominently used within the Viola–Jones object detection framework in 2001. However, 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.[1]

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:[2][3]

 I_{\sum}(x,y) = \sum_{\begin{smallmatrix} x' \le x \\ y' \le y\end{smallmatrix}} 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) + I(x,y-1) - I(x-1,y-1)\,
File:Summed area table.png
A description of computing a sum in the Summed Area Table data structure/algorithm

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, using 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:

\sum_{\begin{smallmatrix} x_0 < x \le x_1 \\ y_0 < y \le y_1 \end{smallmatrix}} i(x,y) = I(D) + I(A) - I(B) - I(C)

Extensions

  • This method is naturally extended to continuous domains.[1]
  • The method can be also extended to high-dimensional images.[4] 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
 \sum_{p\in\{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. [5] 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) = \sum_{\begin{smallmatrix} x' \le x \\ y' \le y\end{smallmatrix}} i(x',y')
 I^2(x,y) = \sum_{\begin{smallmatrix} x' \le x \\ y' \le y\end{smallmatrix}} i^2(x',y')

The variance is given by:

 \operatorname{Var}(X) = \frac{1}{n} \sum_{i=1}^n (x_i - \mu)^2.

Let S_1 and S_2 denote the summations of block ABCD of I and I^2, respectively. S_1 and S_2 are computed quickly by integral image. Now, we manipulate the variance equation as:

 \operatorname{Var}(X) = \frac{1}{n} \sum_{i=1}^n (x_i^2 - 2\cdot\mu\cdot x_i + \mu^2) 
= \frac{1}{n} (\sum_{i=1}^n (x_i)^2 - 2\cdot\sum_{i=1}^n(\mu\cdot x_i) + \sum_{i=1}^n(\mu^2))
= \frac{1}{n} (\sum_{i=1}^n (x_i)^2 - 2\cdot\sum_{i=1}^n(\mu\cdot x_i) + n\cdot(\mu^2))

= \frac{1}{n} (\sum_{i=1}^n (x_i)^2 - 2\cdot\mu \cdot \sum_{i=1}^n(x_i) + n\cdot(\mu^2))
= \frac{1}{n} (S_2 - 2\cdot S_1/n \cdot S_1 + n\cdot((S_1/n)^2))
= \frac{1}{n} (S_2 - (S_1)^2/n)

Where \mu=S_1/n and S_2=\sum_{i=1}^n (x_i^2).

Similar to the estimation of the mean (\mu) and variance (Var), 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.[5] But one important implementation detail that must be kept in mind for the above methods, as mentioned by F Shafait et al. [6] is that of integer overflow occurring for the higher order integral images in case 32-bit integers are used.

References

  1. 1.0 1.1 Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. 5.0 5.1 Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.

External links

Lecture videos