Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.

FFT shift

j_bossu
Beginner
660 Views
Hi

Does it exist a function performing a shift of the FFT to have the origin in the center of the image.
Thanks
0 Kudos
1 Reply
iklim
Beginner
660 Views
Hi
Invert sign for every odd pixel. Something like this:
for(int i=0; i {
Ipp32f *Row = (Ipp32f *)((char *)pSrc + i*srcStep);
for(int k=0; k {
if((i+k)&1)
Row = -Row;
}
}
Igor Klimashevich
0 Kudos
Reply