gpt4 book ai didi

c++ - FFTW编译错误c++

转载 作者:行者123 更新时间:2023-11-28 02:15:47 25 4
gpt4 key购买 nike

我已经包含了 fftw3 的头文件 #include "fftw-3.3.4/api/fftw3.h" -与其余头文件相同的目录,但是当我尝试编译时我收到所有 fftw 函数的错误:

error: ‘fftwnd_destroy_plan’ was not declared in this scope

当 opencv 使用 "cv::" 时,我是否必须在每个函数前面放置一个声明?如果是,这是哪个?

最佳答案

听起来您正在尝试使用 FFTW 3 编译一些旧的 FFTW 2 示例代码。fftwnd_destroy_plan 在 FFTW 2 中,但在 FFTW 3 中已过时。请参阅 FFTW 3 documentation regarding upgrading from FFTW 2 to FFTW 3 ,特别是关于计划的部分:

FFTW 2 had separate data types fftw_plan, fftwnd_plan, rfftw_plan, and rfftwnd_plan for complex and real one- and multi-dimensional transforms, and each type had its own ‘destroy’ function. In FFTW 3, all plans are of type fftw_plan and all are destroyed by fftw_destroy_plan(plan).


TL;DR:将 fftwnd_destroy_plan 更改为 fftw_destroy_plan

关于c++ - FFTW编译错误c++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34093900/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com