資源簡介
實現了可變帶通濾波,固定帶通濾波,除噪功能,顯示圖像,有代碼,可供大家學習

代碼片段和文件信息
//?Filter.cpp?:?Defines?the?class?behaviors?for?the?application.
//?Download?by?http://www.codefans.net
#include?“stdafx.h“
#include?“Filter.h“
#include?“FilterDlg.h“
#ifdef?_DEBUG
#define?new?DEBUG_NEW
#undef?THIS_FILE
static?char?THIS_FILE[]?=?__FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
//?CFilterApp
BEGIN_MESSAGE_MAP(CFilterApp?CWinApp)
//{{AFX_MSG_MAP(CFilterApp)
//?NOTE?-?the?ClassWizard?will?add?and?remove?mapping?macros?here.
//????DO?NOT?EDIT?what?you?see?in?these?blocks?of?generated?code!
//}}AFX_MSG
ON_COMMAND(ID_HELP?CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
//?CFilterApp?construction
CFilterApp::CFilterApp()
{
//?TODO:?add?construction?code?here
//?Place?all?significant?initialization?in?InitInstance
}
/////////////////////////////////////////////////////////////////////////////
//?The?one?and?only?CFilterApp?object
CFilterApp?theApp;
/////////////////////////////////////////////////////////////////////////////
//?CFilterApp?initialization
BOOL?CFilterApp::InitInstance()
{
AfxEnableControlContainer();
//?Standard?initialization
//?If?you?are?not?using?these?features?and?wish?to?reduce?the?size
//??of?your?final?executable?you?should?remove?from?the?following
//??the?specific?initialization?routines?you?do?not?need.
#ifdef?_AFXDLL
Enable3dControls(); //?Call?this?when?using?MFC?in?a?shared?DLL
#else
Enable3dControlsStatic(); //?Call?this?when?linking?to?MFC?statically
#endif
CFilterDlg?dlg;
m_pMainWnd?=?&dlg;
int?nResponse?=?dlg.DoModal();
if?(nResponse?==?IDOK)
{
//?TODO:?Place?code?here?to?handle?when?the?dialog?is
//??dismissed?with?OK
}
else?if?(nResponse?==?IDCANCEL)
{
//?TODO:?Place?code?here?to?handle?when?the?dialog?is
//??dismissed?with?Cancel
}
//?Since?the?dialog?has?been?closed?return?FALSE?so?that?we?exit?the
//??application?rather?than?start?the?application‘s?message?pump.
return?FALSE;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????1078??1999-12-28?15:05??res\Filter.ico
?????文件????????398??1999-12-28?15:05??res\Filter.rc2
?????文件???????3948??1999-12-30?16:26??calculate.h
?????文件???????4290??1999-12-29?21:23??Filter.001
?????文件??????35796??1999-12-30?16:55??Filter.aps
?????文件???????1676??2000-01-02?10:38??Filter.clw
?????文件???????2099??2010-09-03?11:29??Filter.cpp
?????文件???????4230??2010-09-03?11:26??Filter.dsp
?????文件????????518??2010-09-03?11:26??Filter.dsw
?????文件???????1332??1999-12-28?15:05??Filter.h
?????文件???????6446??1999-12-30?16:55??Filter.rc
?????文件??????13623??2010-09-03?11:29??FilterDlg(old).cpp
?????文件??????12282??2010-09-03?11:29??FilterDlg.cpp
?????文件???????1975??2010-09-03?11:29??FilterDlg.h
?????文件???????3353??1999-12-28?15:05??ReadMe.txt
?????文件???????1236??1999-12-29?15:58??Resource.h
?????文件????????204??1999-12-28?15:05??StdAfx.cpp
?????文件????????987??1999-12-28?15:05??StdAfx.h
?????文件?????????20??2011-04-16?20:42??Read_Me.txt
?????目錄??????????0??2000-01-03?09:28??res
-----------?---------??----------?-----??----
????????????????95491????????????????????20
- 上一篇:邊緣檢測圖像邊緣檢測
- 下一篇:TM1640規格書
評論
共有 條評論