- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最近我遇到了一些关于使用 fftw 及其 c2c 转换的问题(参见:3d c2c fft with fftw library)。当我发现我在使用 fftw 库时遇到的问题,我创建了一个新问题,以便以更具体的方式讨论这种情况。由于我正在对真实数据进行复杂到复杂的转换,因此我在傅立叶空间中转换后的数据应该是对称的:F[n] = con(F[N-n])
现在我对小块测试数据进行了一些转换,以检查转换后的数据是否具有这种对称性。对于 1D 变换,一切都按预期工作,但对于更高的维度,我得到了真正意想不到的结果。
我正在使用 fftwf_plan_dft_2d
将 8x8 灰度图像转换为傅立叶空间,复数结果由下式给出:
n
0 real 7971 imag 0
1 real -437.279 imag -802.151
2 real -289 imag -566
3 real -182.721 imag 15.8486
4 real 31 imag 0
5 real -182.721 imag -15.8486
6 real -289 imag 566
7 real -437.279 imag 802.151
8 real -1499.79 imag -315.233
9 real 182.693 imag -74.5563
10 real 55.9239 imag -12.8234
11 real -84.7868 imag -9.10052
12 real -14.4264 imag 211.208
13 real 289.698 imag 214.723
14 real 452.659 imag -246.279
15 real 1136.35 imag -763.85
16 real 409 imag -134
17 real -141.865 imag 42.6396
18 real -33 imag 122
19 real 129.075 imag -49.7868
20 real 1 imag -150
21 real 109.865 imag -84.6396
22 real 95 imag -142
23 real -841.075 imag -92.2132
24 real -108.207 imag -89.2325
25 real -127.213 imag 28.8995
26 real -36.6589 imag -8.27922
27 real -74.6934 imag 43.4437
28 real 70.4264 imag 29.2082
29 real -88.3545 imag -81.8499
30 real -127.924 imag -190.823
31 real 230.302 imag 8.7229
32 real -53 imag 0
33 real -73.1127 imag -22.8578
34 real -85 imag -82
35 real -10.8873 imag 51.1421
36 real -65 imag 0
37 real -10.8873 imag -51.1421
38 real -85 imag 82
39 real -73.1127 imag 22.8578
40 real -108.207 imag 89.2325
41 real 230.302 imag -8.7229
42 real -127.924 imag 190.823
43 real -88.3545 imag 81.8499
44 real 70.4264 imag -29.2082
45 real -74.6934 imag -43.4437
46 real -36.6589 imag 8.27922
47 real -127.213 imag -28.8995
48 real 409 imag 134
49 real -841.075 imag 92.2132
50 real 95 imag 142
51 real 109.865 imag 84.6396
52 real 1 imag 150
53 real 129.075 imag 49.7868
54 real -33 imag -122
55 real -141.865 imag -42.6396
56 real -1499.79 imag 315.233
57 real 1136.35 imag 763.85
58 real 452.659 imag 246.279
59 real 289.698 imag -214.723
60 real -14.4264 imag -211.208
61 real -84.7868 imag 9.10052
62 real 55.9239 imag 12.8234
63 real 182.693 imag 74.5563
对于这么长的数据列表感到抱歉,但它显示了我的问题。
例如对于 F[3]=-182.721 + 15.8486i
我期望 F[64-3] = F[61] = -182.721 - 15.8486i
,但如您所见,它是 -84.7868 + 9.10052i
。相反,F[3]
的共轭位于索引 5。其他对也是如此。
如果有系统我找不到。
完整代码如下:
QImage image("/Users/wolle/Desktop/wolf.png");
int w = image.width();
int h = image.height();
int size = w * h;
cl_float *rawImage = imageToRaw(image); // converts a QImage into an rgb array [0..255]
fftwf_complex *complexImage = (fftwf_complex*) fftwf_malloc(sizeof(fftwf_complex) * size);
fftwf_complex *freqBuffer = (fftwf_complex*) fftwf_malloc(sizeof(fftwf_complex) * size);
// real data to complex data
for (int i = 0; i < size; i++)
{
complexImage[i][0] = (float)rawImage[i];
complexImage[i][1] = 0.0f;
}
fftwf_plan forward = fftwf_plan_dft_2d(w, h, complexImage, freqBuffer, FFTW_FORWARD, FFTW_ESTIMATE);
fftwf_execute(forward);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
int gid = y * w + x;
qDebug() << gid << "real" << freqBuffer[gid][0] << "imag" << freqBuffer[gid][1];
}
}
我会很感激一些帮助。 :-D
问候
狼
最佳答案
对于二维傅立叶变换,当 x 为实数时,FFT(x) 仍然是共轭对称的。但这是二维的。因此索引 16*x+y 处的 (x,y) 元素应该是索引 16*(16-x mod 16)+(16-y mod 16) 处的 (16-x,16-y) 元素的共轭,当 y 不为 0 时,它是 272-16*x-y mod 256。
但我认为虽然您说的是 16x16,但您实际上是指 8x8。因此,8*x+y 处的 (x,y) 与 8*(8-x mod 8) + (8-y mod 8) 处的 (8-x,8-y) 共轭。
特别是,例如,当 x=0 时,共轭元素是 y 和 8-y——例如,包括 3 和 5,如您所见。
(当 x=0 或 y=0 时,上面的“8-y mod 8”表示 0。)
关于2d - fftw c2c : missing symmetry in transformed real data,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10390490/
我有一段这样的代码。我发现 myResults = writer.getBuffer().toString(); 对某些用例返回 EMPTY STRING,但对其他用例则不返回。 我查看了服务器,但在
如何使用 javascript 通过 id 更改元素中的 -webkit-transform 、-moz-transform 、-o-transform 和 -ms-transform css? 这段
我正在使用 javax.xml.transform.Transformer.transform() 通过 xsl 样式表将一个 xml 转换为另一个 xml。我想以编程方式设置第一级 child 的排
为了使 seaborn.pairplot() 正常工作,在 jupyter notebook 中执行了以下步骤。 /usr/local/lib/python2.7/site-packages/matp
假设这个输入 XML 编写这些代码行: StreamSource source = new StreamSource(new StringReader(/* the above XML*/));
如何在 spring 框架中配置 java.xml.transform.Transformer ?我需要转换器的实例来通过 xslt 将 xml 转换为文本。因此,配置的转换器应该了解 xslt 样式
我一直在核心数据中使用可转换属性,将图像和颜色等复杂对象转换为原始数据。我拿了this ... The idea behind transformable attributes is that you
我正在尝试打开 XML 文件,添加一些更改,然后保存到其他 XML 文件结果。我正在使用标准 javax.xml.parsers.* 和 javax.xml.transform* 类。 但在保存的文档
Transformer(变换方法)对输入源的大小有限制吗? 我正在尝试转换一个相当长的 (18M) XML,但收到一个奇怪的错误 "The element type "HR" must be term
我正在尝试解析一个非常简单的示例: 100 我使用的样式表如下: 这在 libxs
来自文档 for from_pretrained ,我知道我不必每次都下载预训练的向量,我可以使用以下语法保存它们并从磁盘加载: - a path to a `directory` contain
默认缓存目录磁盘容量不足,我需要更改默认缓存目录的配置。 最佳答案 您可以在每次加载模型时指定缓存目录 .from_pretrained通过设置参数cache_dir .您可以通过导出环境变量 TRA
有一个函数,例如: CATransform3DGetAffineTransform Returns the affine transform represented by 't'. If 't' ca
我有一个包含 WCF 设置的配置文件: “add”元素只有一个 baseAddress 属性,所以我不能使用 Match 定位器。一种方法如何像我的示例中那样转换多个元素? 最
在收到下面链接中描述的错误后,我已将实体属性的 Transfomer 设置为 NSSecureUnarchiveFromData(之前为 nil)。 CoreData crash error Xcod
当我写Document时使用 Transformer 的 transform() 方法转换为 XML,生成的 XML 文档的格式很好 - 所有元素都写在单独的行上并缩进。除了第一个元素与定义写在同一行
我不明白 StreamResult 实例会发生什么。我看到 Transformer 对象接收 source 和 streamResult: transformer.transform(sour
从下面的代码片段我应该得出结论,std::transform 比 boost::transform 更受欢迎,因为前者使用更少的初始化和析构函数可能更有效比后者? #include #include
transform() 可以将函数应用到序列的元素上,并将这个函数返回的值保存到另一个序列中,它返回的迭代器指向输出序列所保存的最后一个元素的下一个位置。 这个算法有一个版本和 for_each()
我是 react-native 的新手。在项目上将 react-native 从 0.48.3 升级到 0.62.2 后,运行“react-native run-ios”命令时出现错误:“index.
我是一名优秀的程序员,十分优秀!