computational complexity of convolution

拈花ヽ惹草 提交于 2019-12-10 16:47:45

问题


I read that the computational complexity of the general convolution algorithm is O(n^2), while by means of the FFT is O(n log n).

What about convolution in 2-D and 3-D?

Any reference?


回答1:


As for two- and three-dimensional convolution and Fast Fourier Transform the complexity is following:

                            2D                     3D

Convolution               O(n^4)                  O(n^6)

FFT                   O(n^2 log^2 n)           O(n^3 log^3 n)

Reference: Slides on Digital Image Processing, slide no. 34.



来源:https://stackoverflow.com/questions/16164749/computational-complexity-of-convolution

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!