summaryrefslogtreecommitdiff
path: root/macros/fftshift.sci
blob: 48b242a6674d6af99d5a89f203294d0b5f26cc80 (plain)
1
2
3
4
5
6
7
8
9
function [out]=fftshift(image)
         image1=mattolist(image);
         a=opencv_fftshift(image1);
         dimension=size(a)
         for i = 1:dimension
              out(:,:,i)=a(i);
         end
     
endfunction;