Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/martinkersner/acceleration-of-2d-convolution-using-integral-image

Acceleration of 2D convolution using integral image
https://github.com/martinkersner/acceleration-of-2d-convolution-using-integral-image

Last synced: 15 days ago
JSON representation

Acceleration of 2D convolution using integral image

Awesome Lists containing this project

README

        

## Acceleration of 2D Convolution Using Integral Image

Martin Kersner,

[Full text](https://dl.dropboxusercontent.com/u/13642345/Acceleration-of-2D-Convolution-Using-Integral-Image.pdf)

Computation time of box blur filter using convolution depends on the width of kernel. Wider kernels causes longer computation time. However, there is a method of calculating blurred image in constant time called integral image. Due to the constant reading of values, it was reached almost 800 times acceleration with this method. High order filters can be computed by repeated box filtering. This paper also deals with implementation details of acceleration of 2D convolution using
integral image.