How to allocate FFTW input and output arrays?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vajirahasantha
    New Member
    • Jan 2011
    • 2

    How to allocate FFTW input and output arrays?

    int width = ref->width;
    int height = ref->height;
    fftw_complex* img1 = (fftw_complex*) fftw_malloc(siz eof(fftw_comple x)*width*height );

    when i execute above code, im getting an error massage "Unhandled exception at 0x75899617 in AFIS Console.exe: 0xC06D007E: Module not found."

    can someone help me to figure this out....

    thanks
  • donbock
    Recognized Expert Top Contributor
    • Mar 2008
    • 2427

    #2
    This sounds like a missing dynamic link library (DLL).

    What platform are you running on (Windows, LINUX, other)? Were there any DLLs included in the FFTW package? If so, did you install them?

    Comment

    • vajirahasantha
      New Member
      • Jan 2011
      • 2

      #3
      platform is windows.
      there are DLL file and i did include them.(libfftw3-3.dll;libfftw3f-3.dll;libfftw3l-3.dll)

      thanks for the reply.... I'm really done up with this.

      Comment

      Working...