I am working on porting some code that uses the FFTW library to perform some gradient-domain image processing on a single channel float image. The current code calls fftwf_plan_r2r_2d() on a floating point buffer that is WIDTH*HEIGHT in size, and uses FFTW_REDFT00 for both kind arguments. After the inversion there is a divide by (4 * (w-1) * (h-1)) to normalize the result.
I'm no FFT expert and I don't really understand what the code does - I just want to see how fast it can be done with the Accelerate Framework instead of fftw. I'm exploring adapting this to use the Accelerate Framework but there doesn't seem to be an equivalent vDSP function.
What is confusing me is after the first fftf_execute, I have a loop which doesn't seem to treat each element as a complex number. But the output of vDSP_fft2d_zrip does appear to be a set of n/2 complex numbers.
Would like some pointers on adapting the fftw r2r 2d way to the Accelerate vDSP way of doing things.