资源简介
实现了可变带通滤波,固定带通滤波,除噪功能,显示图像,有代码,可供大家学习
代码片段和文件信息
// 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规格书
相关资源
- 一种强跟踪扩展卡尔曼滤波器的改进
- lms算法自适应滤波器的dsp5402实现c程序
- LC差分低通滤波器
- 语音信号滤波去噪使用 汉宁窗设计的
- labview 波形滤波器VI进行多通道信号多
- 用quartus2实现的数字滤波器,调试成功
- sallen-key滤波器算法
- FIR滤波器设计
- 自适应滤波器原理第四版配套答案!
- FIR低通滤波器
- cic verilog 代码
- CCS FIR滤波器实现
- 低通椭圆滤波器截止频率有11M,47.6
- 基于Hessian滤波器的血管增强算法
- 基于FPGA的通用FIR滤波器的VHDL源代码
- 用verilog编写的fir滤波器程序
- 梳状滤波器
- 双线性变换法,设计Butterworth低通数字
- IIR数字滤波器的verilog实现
- 发夹型微带带通滤波器设计
- farrow滤波器的verilog语言设计实现
- 抽取插值CIC滤波器 完整原理介绍
- 采用频率取样设计法设计FIR数字低通
- 有源模拟滤波器
- DSP实验四 FIR滤波器设计
- 有源滤波器的设计与计算
- 匹配滤波器测试用例
- 扩展卡尔曼滤波器(EKF):一个面向
- C5402 DSP FIR IIR滤波器仿真文件
- 基于扩展卡尔曼滤波器的永磁同步电
评论
共有 条评论