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

IPP: Inverse FFT on non packed data

shdow
Beginner
559 Views

Hi everyone,

We have some troubles with optimizing our math algorithm.

We calculate the spectrum using FFT functions ant then we need to perform some mathematical operations on it.

The spectrum is in Pack/Perm or CCS format. We can convert it to complex data format but finally we want to take an inverse Fast Fourier transformation. 

We cannot find the IFFT function which takes complex data format as it's argument. There are no function to convert complex data format to Pack/Perm/CCS as well.

Could you  help us on that issue?

PS: There was IFFT function in old (SPL) library which calculated Inverse Fourier on the complex data. 

Thanks in advance,

0 Kudos
1 Reply
Igor_A_Intel
Employee
559 Views

hi,

it's not clear are we talking about 2D or 1D FFT. but in both domains we have Inv/Fwd_CToC flavors:

IPPAPI (IppStatus, ippsFFTInv_CToC_32fc,
                   ( const Ipp32fc* pSrc, Ipp32fc* pDst,
                     const IppsFFTSpec_C_32fc* pFFTSpec, Ipp8u* pBuffer ))
 

IPPAPI (IppStatus, ippiFFTInv_CToC_32fc_C1R,
                   ( const Ipp32fc* pSrc, int srcStep,
                     Ipp32fc* pDst, int dstStep,
                     const IppiFFTSpec_C_32fc* pFFTSpec,
                     Ipp8u* pBuffer ))

regards, Igor
 

0 Kudos
Reply