本文实例讲述了C++实现二维图形的傅里叶变换的方法。有一定的借鉴价值。分享给大家供大家参考。
具体代码如下:
// Fourier.cpp : Defines the entry point for the console application.
//
#include stdafx.h
#include stdio.h
#include math.h
#include
#include
#include cxcore.h
int main(int argc, char* argv[])
{
IplImage *img;
IplIm
1