简体   繁体   中英

Why does the ifft2 image split in 4?

After doing a two-dimensional inverse Fourier transform in MATLAB, I got the 4-part split image of MRI. How can I solve this problem?

for i =1:8
raw_i = ifft2(kspace(:,:,i)); %kspace contains the 8-coil wise MRI data w.o undersampling , 160*160*8 matrix
imshow(abs(raw_i),[]);

结果

Use fftshift to rearrange the result; it shifts the zero frequency parts to the center of the image.

imshow(fftshift(abs(raw_i)),[]);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM