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.
1つの画像のパワースペクトルの自己相関をどのように実装できるか誰かが考えていますか?私は使ってみました:
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