Nyquist frequency from image
7 ビュー (過去 30 日間)
古いコメントを表示
Hi..
Is it possible to calculate nyquist frequency or the sampling frequency from image.
0 件のコメント
採用された回答
Walter Roberson
2012 年 4 月 13 日
floor(size(YourImage) ./ 2)
2 件のコメント
Walter Roberson
2012 年 4 月 13 日
Nyquist frequency for N samples is N/2. size() returns the number of samples in each direction, so divide the size by 2 to get the frequency. This corresponds to the maximum frequency reliably expressible, which is the case where alternating pixels are off and on.
Perhaps you don't need the floor(): it depends on how you want to handle the possibility of odd number of pixels in a direction.
Note that the nyquist frequency can be different between horizontal and vertical, which is why multiple values must be returned.
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!