📄 myfourial.h
字号:
// MyFourial.h: interface for the CMyFourial class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MYFOURIAL_H__33550A71_3391_435B_8D7D_9347C3A02E4C__INCLUDED_)
#define AFX_MYFOURIAL_H__33550A71_3391_435B_8D7D_9347C3A02E4C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
const double PI = 3.1415926535;
#define WIDTHBYTES(bits) (((bits) + 31) / 32 * 4)
#include "cdib.h"
#include "math.h"
#include <complex>
using namespace std;
class CMyFourial
{
public:
VOID FFT(complex<double> * TD, complex<double> * FD, int r);
BOOL Fourier(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);
CMyFourial();
virtual ~CMyFourial();
};
#endif // !defined(AFX_MYFOURIAL_H__33550A71_3391_435B_8D7D_9347C3A02E4C__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -