资源简介
基于MFC的界面设计,包括灰度化、边缘检测、图像反转、均值、中值滤波,适合初学者,有详细注释。
代码片段和文件信息
// ChildFrm.cpp : implementation of the CChildframe class
//
#include “stdafx.h“
#include “LDJ.h“
#include “ChildFrm.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)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CChildframe construction/destruction
CChildframe::CChildframe()
{
// TODO: add member initialization code here
}
CChildframe::~CChildframe()
{
}
BOOL CChildframe::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CChildframe diagnostics
#ifdef _DEBUG
void CChildframe::AssertValid() const
{
CMDIChildWnd::AssertValid();
}
void CChildframe::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CChildframe message handlers
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1530 2012-12-05 15:48 LDJ1\ChildFrm.cpp
文件 1397 2012-12-05 15:48 LDJ1\ChildFrm.h
文件 16578 2013-01-12 22:28 LDJ1\Debug\ChildFrm.obj
文件 127078 2013-01-13 14:43 LDJ1\Debug\LDJ.exe
文件 438556 2013-01-13 14:43 LDJ1\Debug\LDJ.ilk
文件 23666 2013-01-13 14:26 LDJ1\Debug\LDJ.obj
文件 5504104 2013-01-12 22:28 LDJ1\Debug\LDJ.pch
文件 476160 2013-01-13 14:43 LDJ1\Debug\LDJ.pdb
文件 7888 2013-01-13 14:26 LDJ1\Debug\LDJ.res
文件 42933 2013-01-13 14:43 LDJ1\Debug\LDJDoc.obj
文件 20148 2013-01-13 14:26 LDJ1\Debug\LDJView.obj
文件 19342 2013-01-12 22:28 LDJ1\Debug\MainFrm.obj
文件 105930 2013-01-12 22:28 LDJ1\Debug\StdAfx.obj
文件 222208 2013-12-05 09:08 LDJ1\Debug\vc60.idb
文件 372736 2013-01-13 14:43 LDJ1\Debug\vc60.pdb
文件 30188 2013-12-05 09:08 LDJ1\LDJ.APS
文件 2934 2013-12-05 09:09 LDJ1\LDJ.clw
文件 4457 2012-12-05 15:57 LDJ1\LDJ.cpp
文件 4620 2012-12-05 15:48 LDJ1\LDJ.dsp
文件 531 2012-12-05 15:48 LDJ1\LDJ.dsw
文件 1323 2012-12-05 15:48 LDJ1\LDJ.h
文件 123904 2013-12-05 09:09 LDJ1\LDJ.ncb
文件 414208 2013-12-05 09:09 LDJ1\LDJ.opt
文件 240 2013-12-05 09:08 LDJ1\LDJ.plg
文件 13588 2013-01-13 14:26 LDJ1\LDJ.rc
文件 20261 2013-01-13 14:43 LDJ1\LDJDoc.cpp
文件 1971 2013-01-13 14:15 LDJ1\LDJDoc.h
文件 3375 2012-12-05 15:55 LDJ1\LDJView.cpp
文件 1843 2012-12-05 15:48 LDJ1\LDJView.h
文件 2520 2012-12-05 15:48 LDJ1\MainFrm.cpp
............此处省略15个文件信息
- 上一篇:数据结构C++版第三版 习题解析 邓俊辉
- 下一篇:DBscan实现
评论
共有 条评论