Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何实现一张图像的功率谱的自相关?我尝试使用:
autocorrel = ifft( | fft(power spectrum) | ^ 2 );
但它不工作?你知道为什么或其他方式吗?
时域中的自相关是通过卷积完成的。函数与 0 附近的自镜像卷积。因此,autocorrel = linear_2d_convolution( S(x,y), S(-x,-y) ),其中S表示功率谱。
autocorrel = linear_2d_convolution( S(x,y), S(-x,-y) )
S