?? llvfouriertransforms.h
字號(hào):
/***********************************************************************
FileName:
LLVFourierTransforms.h Copyright (C), 2008, LusterLightVision
Description:
Fourier Transforms : Main Header
************************************************************************/
#include "LLVProDef.h"
#include<complex>
using namespace std;
// 一維付立葉正變換
LLVPRO_API void FFT_1D(complex<double> * pCTData, complex<double> * pCFData, int nLevel);
LLVPRO_API void FFT_1D_Opti(complex<double> * pCTData, complex<double> * pCFData, int nLevel);
// 一維付立葉逆變換
LLVPRO_API void IFFT_1D(complex<double> * pCFData, complex<double> * pCTData, int nLevel);
// 二維付立葉變換
// pCTData 已經(jīng)進(jìn)行了補(bǔ)零、中心變換操作,函數(shù)內(nèi)部不負(fù)責(zé)該操作
// lTransWidth, lTransHeight 分別為不小于圖像的寬度、高度的2的整數(shù)次冪
LLVPRO_API BOOL FFT_2D(complex<double> * pCTData, complex<double> * pCFData,long lTransWidth, long lTransHeight);
// 二維付立葉變換
// lTransWidth, lTransHeight 分別為不小于圖像的寬度、高度的2的整數(shù)次冪
LLVPRO_API BOOL IFFT_2D(complex<double> * pCFData, complex<double> * pCTData, long lTransWidth, long lTransHeight);
// 圖像二維傅立葉正變換
// lTransWidth, lTransHeight 分別為不小于圖像的寬度、高度的2的整數(shù)次冪
// pCFData 是經(jīng)過(guò)中心變換的數(shù)據(jù)
LLVPRO_API BOOL DIBFFT_2D(LPBYTE pbyImage,long lWidth,long lHeight,long &lTransWidth,long &lTransHeight,complex<double>* &pCFData);
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -