资源简介
实现了可变带通滤波,固定带通滤波,除噪功能,显示图像,有代码,可供大家学习

代码片段和文件信息
// 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规格书
相关资源
- labview编程软件滤波器以及编写程序设
- 基于Gabor滤波器的图像纹理特征提取
- FIR低通滤波器 ccs运行环境
- 液晶电视电路图及解说
- 基于labview滤波器的设计
- PLL回路滤波器设计的调整指南
- PLL回路滤波器设计调整指南及使用案
- 锁相环回路滤波器设计优化
- 基于GSM接收机的集成多相滤波器设计
- 宽频带数字锁相环的设计及基于FPGA的
- SAPF并网LCL滤波器稳定性
- 基于改进鱼群算法的矿用链式STATCOM装
- 基于梳状滤波器和子群算法的谐波检
- 一种优化的基于i_p-i_q法的谐波电流检
- 一种改进的谐波电流检测方法
- 基于改进自适应谐波检测法的有源电
- LMS自适应滤波器在电力有源滤波器中
- 并联型有源电力滤波器输出电感选择
- 有源电力滤波器在舰船电网谐波补偿
- 有源滤波器的预测电压空间矢量控制
- 有源电力滤波器综述
- 三相四线制有源滤波器的无差拍控制
- LCL滤波器在三相PWM整流器中的应用
- 大功率防爆变频器EMI滤波器设计
- EMI滤波器的设计 钱照明!
- 电源EMI滤波器插入损耗
- LC滤波器计算工具
- 开关电源电磁干扰滤波器设计
- MW级矿用防爆变频器EMI滤波器的设计
- EMI滤波器原理与设计方法
评论
共有 条评论