EmguCV 中图像的傅立叶变换
谁能告诉我 emgucv 2.3 中是否有内置函数用于查找图像的傅里叶变换?
提前致谢
Can anyone tell me if there is an inbuilt function present in emgucv 2.3 for finding out fourier transform of images ?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从我的回答 傅里叶变换 + emgucv
你所追求的功能是 CvInvoke.cvDFT 它是从技术上讲是调用 opencv 方法,但它应该是您之后的内容
这是将虚部和实部分开的代码cvDFT:
干杯,
克里斯
From my answer Fourier Transform + emgucv
The function you are after is CvInvoke.cvDFT it is technically calling the opencv method but it should be what your after
Here is the code that splits the Imaginary and Real parts from cvDFT:
Cheers,
Chris