資源簡介
VC++的MFC框架實現(xiàn)了多種小波變換,可以構(gòu)造不同的小波基如Haar小波等,分解與重建,并在此基礎(chǔ)上實現(xiàn)圖像融合。

代碼片段和文件信息
//?Childframe.cpp?:?implementation?file
//
#include?“stdafx.h“
#include?“小波變換.h“
#include?“Childframe.h“
#ifdef?_DEBUG
#define?new?DEBUG_NEW
#undef?THIS_FILE
static?char?THIS_FILE[]?=?__FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
//?CChildframe
IMPLEMENT_DYNCREATE(CChildframe?CMDIChildWnd)
BEGIN_MESSAGE_MAP(CChildframe?CMDIChildWnd)
//{{AFX_MSG_MAP(CChildframe)
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
//?CChildframe?construction/destruction
CChildframe::CChildframe()
{
}
CChildframe::~CChildframe()
{
}
BOOL?CChildframe::PreCreateWindow(CREATESTRUCT&?cs)
{
//?TODO:?Modify?the?Window?class?or?styles?here?by?modifying
//??the?CREATESTRUCT?cs
cs.style?=?WS_CHILD?|?WS_VISIBLE?|?WS_OVERLAPPED?|?WS_CAPTION?|?WS_SYSMENU
|?FWS_ADDTOtitle?|?WS_MINIMIZEBOX?|?WS_MAXIMIZEBOX?|?WS_MAXIMIZE;
cs.cx?=?cs.cy?=0;
return?CMDIChildWnd::PreCreateWindow(cs);
}
/////////////////////////////////////////////////////////////////////////////
//?CChildframe?diagnostics
#ifdef?_DEBUG
void?CChildframe::AssertValid()?const
{
CMDIChildWnd::AssertValid();
}
void?CChildframe::Dump(CDumpContext&?dc)?const
{
CMDIChildWnd::Dump(dc);
}
#endif?//_DEBUG
/////////////////////////////////////////////////////////////////////////////
//?CChildframe?message?handlers
int?CChildframe::OnCreate(LPCREATESTRUCT?lpCreateStruct)?
{
if?(CMDIChildWnd::OnCreate(lpCreateStruct)?==?-1)
return?-1;
return?0;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????221602??2003-06-07?10:06??RES\B-SPLINE.BMP
?????文件???????3638??2003-04-20?18:08??RES\BMP.ICO
?????文件???????2238??2003-04-20?18:03??RES\BUGGY.ICO
?????文件??????77686??2003-06-07?09:39??RES\COIFLET.BMP
?????文件??????45958??2003-06-07?09:39??RES\COIFLET2.BMP
?????文件??????39778??2003-06-07?09:39??RES\COIFLET3.BMP
?????文件??????39778??2003-06-07?09:39??RES\COIFLET5.BMP
?????文件?????145138??2003-06-07?09:06??RES\daubechies.bmp
?????文件??????37654??2003-06-07?09:06??RES\daubechies4.bmp
?????文件??????45958??2003-06-07?09:06??RES\daubechies6.bmp
?????文件??????37654??2003-06-07?09:06??RES\daubechies8.bmp
?????文件?????167374??2003-06-07?09:29??RES\GAUSS.BMP
?????文件??????45958??2003-06-07?09:06??RES\HAAR.BMP
?????文件???????2998??2007-05-15?22:32??RES\icoImage.ico
?????文件??????71606??2003-06-07?09:57??RES\mexicianhat.bmp
?????文件??????45958??2003-06-06?22:32??RES\MEYER1.BMP
?????文件?????159110??2003-06-07?09:57??RES\MORLET.BMP
?????文件??????45686??2003-06-06?22:48??RES\morletandmexicanhat.bmp
?????文件?????183862??2003-06-07?10:06??RES\SHANNON.BMP
?????文件?????164978??2003-06-07?09:38??RES\SYMLET.BMP
?????文件??????32702??2003-06-07?09:38??RES\SYMLET4.BMP
?????文件??????45958??2003-06-07?09:38??RES\SYMLET6.BMP
?????文件??????32702??2003-06-07?09:38??RES\SYMLET8.BMP
????..A.SH.?????69120??2007-05-14?19:53??RES\Thumbs.db
?????文件???????1910??2007-05-17?14:45??RES\Toolbar.bmp
?????文件???????1078??2003-04-04?19:45??RES\小波變換.ico
?????文件????????400??2003-04-04?19:45??RES\小波變換.rc2
?????文件???????1078??2003-04-04?19:45??RES\小波變換Doc.ico
?????文件?????786486??2007-06-06?09:21??A.bmp
?????文件?????786486??2007-06-06?09:21??B.bmp
............此處省略87個文件信息
評論
共有 條評論