Filter löschen
Filter löschen

Can anyone verify this code for spectral magnitude error?

1 Ansicht (letzte 30 Tage)
aliya
aliya am 25 Mai 2015
Kommentiert: Image Analyst am 25 Mai 2015
%%Input image
origimage = imread('greekchurch','jpg');
// Smoothing via gaussian lowpass
window = fspecial('gaussian', 3, 0.5);
distimage= origimage*window
// Fastfourier transform of image
fftA = fft2(double(origimage));
fftB = fft2(double(distimage));
[r c] = size(origimage);
for i=1:r
for j=i:j
result=abs(fftA)-abs(fftB);
result = result*result/rc;
end
end
  5 Kommentare
aliya
aliya am 25 Mai 2015
No, i just have tried this by following concept of SME. By coding perspective i am not sure about it.
Image Analyst
Image Analyst am 25 Mai 2015
It seems like you're only reading comments, not any answers below. Any reason why not? Do I need to move my suggestion up here?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 25 Mai 2015
What do you want to achieve? Are you sure you want to subtract then square, and not square then subtract?

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by