资源简介
本代码是作者自己编写,采用MFC框架,运用C++语言对常用边缘提取算法进行实现,代码包中含有示例图片,从图片处理效果可以看出该代码稳定可靠,能为图像处理算法初学者带来一定启发。
代码片段和文件信息
// EdgeDetection.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “EdgeDetection.h“
#include “EdgeDetectionDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CEdgeDetectionApp
BEGIN_MESSAGE_MAP(CEdgeDetectionApp CWinApp)
//{{AFX_MSG_MAP(CEdgeDetectionApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CEdgeDetectionApp construction
CEdgeDetectionApp::CEdgeDetectionApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CEdgeDetectionApp object
CEdgeDetectionApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CEdgeDetectionApp initialization
BOOL CEdgeDetectionApp::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
CEdgeDetectionDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 824790 2009-12-22 15:57 边缘检测\32.bmp
文件 6598 2008-09-01 10:44 边缘检测\CxImage\cximage.dsp
文件 537 2001-08-06 17:19 边缘检测\CxImage\cximage.dsw
文件 2237440 2009-10-20 15:26 边缘检测\CxImage\cximage.ncb
文件 51712 2009-10-20 15:26 边缘检测\CxImage\cximage.opt
文件 5024 2009-10-20 15:26 边缘检测\CxImage\CxImage.plg
文件 18164 2009-04-27 16:33 边缘检测\CxImage\CxImageDLL\CxImageCrtDll.aps
文件 282 2003-03-23 15:26 边缘检测\CxImage\CxImageDLL\CxImageCrtDll.cpp
文件 8356 2004-10-03 14:34 边缘检测\CxImage\CxImageDLL\CxImageCrtDll.dsp
文件 24214 2008-07-10 12:31 边缘检测\CxImage\CxImageDLL\CxImageCrtDll.plg
文件 3031 2004-10-17 09:40 边缘检测\CxImage\CxImageDLL\CxImageCrtDll.rc
文件 2998 2003-04-06 13:33 边缘检测\CxImage\CxImageDLL\CxImageDll.dsw
文件 1033216 2009-04-27 16:36 边缘检测\CxImage\CxImageDLL\CxImageDll.ncb
文件 70144 2009-04-27 16:36 边缘检测\CxImage\CxImageDLL\CxImageDll.opt
文件 17980 2008-12-03 22:29 边缘检测\CxImage\CxImageDLL\CxImageMfcDll.aps
文件 364 2003-03-23 14:55 边缘检测\CxImage\CxImageDLL\CxImageMfcDll.clw
文件 1817 2003-03-23 14:55 边缘检测\CxImage\CxImageDLL\CxImageMfcDll.cpp
文件 7544 2004-10-03 14:34 边缘检测\CxImage\CxImageDLL\cximagemfcdll.dsp
文件 1330 2003-03-23 14:55 边缘检测\CxImage\CxImageDLL\CxImageMfcDll.h
文件 3029 2004-10-17 09:39 边缘检测\CxImage\CxImageDLL\CxImageMfcDll.rc
文件 78548 2008-07-10 12:31 边缘检测\CxImage\CxImageDLL\Debug\cximagecrtd.exp
文件 133590 2008-07-10 12:31 边缘检测\CxImage\CxImageDLL\Debug\cximagecrtd.lib
文件 25600 2008-07-10 12:31 边缘检测\CxImage\CxImageDLL\Debug\cximagecrtd.pdb
文件 6228 2008-07-10 12:31 边缘检测\CxImage\CxImageDLL\Debug\CxImageCrtDll.obj
文件 972 2008-07-10 12:31 边缘检测\CxImage\CxImageDLL\Debug\CxImageCrtDll.res
文件 49956 2008-07-10 12:31 边缘检测\CxImage\CxImageDLL\Debug\tif_xfile.obj
文件 159744 2008-07-10 12:31 边缘检测\CxImage\CxImageDLL\Debug\vc60.pdb
文件 53846 2008-07-10 12:31 边缘检测\CxImage\CxImageDLL\Debug\ximabmp.obj
文件 163071 2008-07-10 12:31 边缘检测\CxImage\CxImageDLL\Debug\ximadsp.obj
文件 134301 2008-07-10 12:31 边缘检测\CxImage\CxImageDLL\Debug\ximaenc.obj
............此处省略476个文件信息
相关资源
- VC++ MFC编写的2048小游戏工程及源代码
- Algorithms in C++236166
- MFC实现dem的读取与现实
-
[openfr
ameworks] 精通 openfr ameworks ( - Coons曲面与hermite、bezier、B样条曲线标
- MFC扫雷游戏源码 自己做的 适合初学者
- C++语言绘制中国地图
- MFC皮肤免费可用
- C++教程 面向对象编程 清华大学出版
- 斗地主C++实现
- VC++6.0 MFC 基于对话框编写的扫雷源程
- C++消消乐小游戏 windows程序设计课程设
- Microsoft Visual C++ 2013 Redistributable (x
- 使用C++结合QT调用bartender打印条码的教
- Algorithms in C++ 1 - 4
- 多功能计算器 vc++ mfc
- 21天学通C++第8版_带书签_超清完整版
- 图书管理系统VC6 MFC
- 贪吃蛇VC6 MFC
- MFC vc++ 指针时钟 闹钟,非常好用。
- 酒店管理系统数据库设计
- C++ MFC 学生和教师信息系统
- FC 重装机兵C++版 源码
- visual c++ 2005 sp1运行时组件
- VC6.0的使用工具AddOpen插件、字体/颜色
- 餐饮管理资源源代码
- VC/MFC启动及登录界面设计
- VC++开发实战1200例界面换肤模块
- 21天学通C++第八版最新版PDF带配套源码
- c++实现语音聊天室
评论
共有 条评论