How it works
Suppose an image is
All other pixels have a value equal to the sum
See the integral in the above image? Every pixel is the summation of the pixels before it (above and to the left).
Now, to calculate the summation of the pixels in the black box, you take the corresponding box in the integral. You sum as follows: (Bottom right + top left – top right – bottom left).
So for the 3,5,4,1 box, the calculations would go like this: (30+0-17-0 = 13). For the 4,1 box, it would be (0+15-10-0 = 5).
This way, you can calculate summations in rectangular regions rapidly.
More than just summations!
With the basic idea in mind, you can extend it to more types of summations. You can calculate the sum of squares. You can rotate the image by 45 degrees and then do the summations. Then, you can calculate the totals in any arbitrary rectangular region that is upright or tilted at 45 degrees.
You can calculate summations on irregular areas too (only those with 90 degree corners though). Not just that, you can do super fast blurs, approximate gradients and compute means and standard deviations very fast.
Calculating Integral Images in OpenCV
OpenCV comes with a predefined function to calculate an integral image.
void cvIntegral(const CvArr* image, CvArr* sum, CvArr* sqsum=NULL, CvArr* tilted_sum=NULL);
The parameters are, as always, self explanatory:
-
image: the source image
-
sum: the sum summation integral image
-
sqsum: the square sum integral image
-
tiled_sum:
image is rotated by 45 degrees and then its integral is calculated
Summary
Calculating integral images is trivial. But they let you do more complex stuff (like blurring, HAAR wavelets, etc) super fast. And
也贴出只针对8位灰度图的代码,相当精简,看起来会比openCV的稍稍舒服一些
for( y = 0; y < image->height; y++, src += image->width, sum += sum_width )
{
int s = sum[-1] = 0;
for( x = 0; x < image->width; x ++ )
{
s += src[x];
sum[x] = sum[x - sum_width] + s;
}
}
原博客地址:http://blog.sina.com.cn/s/blog_5584da9601018f5x.html
本文介绍了积分图技术的基本原理及其在图像处理中的应用。通过积分图,可以快速计算图像中任意矩形区域像素的总和,进而提高诸如Haar小波、LBP、HOG和SURF等特征提取算法的效率。文章还提供了OpenCV中积分图函数的具体使用方法及示例代码。

2320

被折叠的 条评论
为什么被折叠?



