c++ - fftw - 访问冲突错误

标签 c++ fftw

我实现了一个 fftw (fftw.org) 示例来使用快速傅立叶变换... 这是代码....

我加载了一张我从 uint8_t 转换为 double 的图像(此代码工作正常...)。

string bmpFileNameImage = "files/testDummyFFTWWithWisdom/onechannel_image.bmp"; 
BMPImage bmpImage(bmpFileNameImage);
vector<double>pixelColors; 
vector<uint8_t> image = bmpImage.copyBits();

toDouble(image,pixelColors,256,256, 1); 
int width = bmpImage.width();
int height = bmpImage.height();

我使用智慧文件来提高性能

FILE * file = fopen("wisdom.fftw", "r");
if (file) {
    fftw_import_wisdom_from_file(file);
    fclose(file);
} 

///*  fftw variables  */
fftw_complex *out;

double *wisdomInput = (double *) fftw_malloc(sizeof(double)*width*2*(height/2 +1 ));

const fftw_plan forward =fftw_plan_dft_r2c_2d(width,height, wisdomInput,reinterpret_cast<fftw_complex *>(wisdomInput),FFTW_PATIENT);
const fftw_plan inverse = fftw_plan_dft_c2r_2d(width, height,reinterpret_cast<fftw_complex *>(wisdomInput),wisdomInput, FFTW_PATIENT);

file = fopen("wisdom.fftw", "w");

if (file) {
    fftw_export_wisdom_to_file(file);
    fclose(file);
}

最后,我执行 fftw 库....我收到第一个访问冲突错误 函数 (fftw_execute_dft_r2c),我不知道为什么......我读了这个教程: http://www.fftw.org/fftw3_doc/Multi_002dDimensional-DFTs-of-Real-Data.html#Multi_002dDimensional-DFTs-of-Real-Data . 我用 (ny/2+1) 做了一个 malloc,它是如何解释的……。我不明白为什么它不起作用....我正在测试不同的尺寸...

out = (fftw_complex*) fftw_malloc(sizeof(fftw_complex) * width *(height / 2 + 1));
double *result =(double *)fftw_malloc(width * (height+2)  * sizeof(double));

fftw_execute_dft_r2c(forward,&pixelColors[0],out);
fftw_execute_dft_c2r(inverse,out,result);

问候。

最佳答案

这是更正后的代码。 它有一些错误:

  • 它正在读取一个错误的 wisdom.fftw 文件(来自一些旧测试...)。现在,它总是创建一个新的 fftw_plan 和一个新文件。
  • 我误解了 fftw 库与 in-place and out-of-place 的工作原理参数。我必须更改 mallocs 以获得“就地”的正确填充(我在 malloc 函数中添加了 +2)。
  • 为了恢复图像,我不得不除以它的大小((宽度 + 2)* 高度)它是如何解释的 link .

`

/* load image */
string bmpFileNameImage = "files/polyp.bmp";

BMPImage bmpImage(bmpFileNameImage);

int width = bmpImage.width();
int height = bmpImage.height();

vector<double> pixelColors;
vector<uint8_t> image = bmpImage.copyBits();
//get one channel from the image
Uint8ToDouble(image,pixelColors,bmpImage.width(),bmpImage.height(),1);

//We don't reuse old wisdom.fftw... It can be corrupt 
/*
FILE * file = fopen("wisdom.fftw", "r");
if (file) {
    fftw_import_wisdom_from_file(file);
    fclose(file);
} */

double *wisdomInput = (double *) fftw_malloc(sizeof(double)*height*(width+2));

const fftw_plan forward =fftw_plan_dft_r2c_2d(width,height,wisdomInput,reinterpret_cast<fftw_complex *>(wisdomInput),FFTW_PATIENT);
const fftw_plan inverse = fftw_plan_dft_c2r_2d(width,height,reinterpret_cast<fftw_complex *>(wisdomInput),wisdomInput, FFTW_PATIENT);
double *bitsColors =(double *)fftw_malloc((width) * height * sizeof(double));

for (int y = 0; y < height; y++) {
    for (int x = 0; x < width+2; x++) {
        if (x < width) {
            int currentIndex = ((y * width) + (x));
            bitsColors[currentIndex] = (static_cast<double>(result[y * (width+2) + x])) / (height*width);
        }
    }
}
fftw_free (wisdomInput);
fftw_free (out);
fftw_free (result);
fftw_free (bitsColors);

fftw_destroy_plan(forward);
fftw_destroy_plan(inverse);
fftw_cleanup();
}

`

关于c++ - fftw - 访问冲突错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17293212/

相关文章:

c++ - C/C++ 无法在 for 循环中运行 for 循环

用于访问 COM 对象属性的 C++ 包装函数(宏)

c++ - 在 Visual Studio 2010 中链接 libfftw3-3.lib

c - 在函数内部使用 fftw3 会产生段错误

homebrew - 如何配置通过 HomeBrew 安装的 FFTW3?

c++ - openh264 重复帧

c++ - 如何远程调试 Mac 桌面应用程序

c++ - Clang 修改析构函数中的返回值?

transform - 重复 FFTW 调用时出现错误

c - 我应该使用 Halfcomplex2Real 还是 Complex2Complex