资源简介
《Visual C++数字图像实用工程案例精选》是2004年人民邮电出版社出版的图书,作者是徐慧。该资源是本书的所有源码,相关程序能直接运行。
代码片段和文件信息
// Cell.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Cell.h“
#include “MainFrm.h“
#include “CellDoc.h“
#include “CellView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCellApp
BEGIN_MESSAGE_MAP(CCellApp CWinApp)
//{{AFX_MSG_MAP(CCellApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// 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
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCellApp construction
CCellApp::CCellApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CCellApp object
CCellApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CCellApp initialization
BOOL CCellApp::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
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application‘s document templates. Document templates
// serve as the connection between documents frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CCellDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CCellView));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
}
/////////////////////////
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-03-07 21:37 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\
目录 0 2004-02-25 09:31 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\
文件 3158 2004-01-17 23:34 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\Hough变换.txt
文件 1718 2004-01-17 23:30 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\图像增强技术.txt
文件 1887 2004-01-17 23:26 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\图像平移.txt
文件 4590 2004-01-17 23:24 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\图像旋转.txt
文件 1702 2004-01-17 23:31 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\图像的3D灰度显示.txt
文件 1101 2004-01-17 23:17 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\图像的反色.txt
文件 3538 2004-01-17 23:23 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\图像缩放.txt
文件 2214 2004-01-17 23:25 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\图像转置.txt
文件 2801 2004-01-17 23:24 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\图像镜像.txt
文件 4284 2004-01-17 23:33 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\拉普拉斯高斯边缘检测.txt
文件 4376 2004-01-17 23:32 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\显示浮雕文字效果.txt
文件 2886 2004-01-17 23:31 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\显示渐变色彩效果.txt
文件 1294 2004-01-17 23:27 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\浮雕技术.txt
文件 1388 2004-01-17 23:21 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\灰度均衡.txt
文件 1660 2004-01-17 23:21 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\灰度拉伸.txt
文件 3201 2004-01-17 23:29 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\维纳滤波处理.txt
文件 2919 2004-01-17 23:28 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\逆滤波处理.txt
文件 953 2004-01-17 23:19 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\阈值变换.txt
文件 1521 2004-01-17 23:27 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap1\雕刻技术.txt
目录 0 2004-02-25 09:31 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap2\
目录 0 2004-02-25 09:31 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap2\细胞识别统计系统\
文件 1327158 2003-04-24 21:48 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap2\细胞识别统计系统\Blood.bmp
文件 52800 2003-04-24 21:48 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap2\细胞识别统计系统\Cell.aps
文件 263222 2003-04-24 21:48 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap2\细胞识别统计系统\cell.bmp
文件 6638 2003-04-24 21:48 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap2\细胞识别统计系统\Cell.clw
文件 4173 2003-04-24 21:48 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap2\细胞识别统计系统\Cell.cpp
文件 5014 2003-08-01 15:01 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap2\细胞识别统计系统\Cell.dsp
文件 533 2003-04-24 21:48 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap2\细胞识别统计系统\Cell.dsw
文件 81920 2003-04-24 21:48 Visual C++数字图像实用工程案例精选源码( 徐惠 等编著)\chap2\细胞识别统计系统\Cell.exe
............此处省略398个文件信息
- 上一篇:交通咨询系统最短路径最小花费
- 下一篇:C++实现的职工管理系统
相关资源
- C++实现的职工管理系统
- 常用数值计算方法c++源代码实现
- 粒子群算法及其代码实现
- 椭圆曲线ECC加密解密算法的c语言实现
- 格雷码图片生成与保存C++实现代码
- hill密码的加密、解密以及破译.zip
- C++生存游戏
- 职工工作量统计系统.rar
- lbm模拟液滴从壁面滑落
- C++学生成绩管理系统 2018
- Win32简易画图程序
- C++数值算法 C数值算法 的随书代码
- 扫雷游戏.cpp C++ 课程设计
- c++万能外挂.txt
- Qt飞机大战小游戏源代码
- VC++用MFC做选课系统
- C++网络爬虫项目
- 泡泡堂(炸弹人)小游戏C/C++完整源码
- 张平OpenCV算法精讲基于python和C++教材
- CTP、python、C++ 期货、股票程序化交易
- Visual C++串口通信技术详解.(机械工业
- MFC VC++实现Sierpinski分形图像
- Accelerated C++ (中文pdf+英文原版chm)
- 汽车加油行驶问题 C++算法实现
- C++操作系统课设-进程管理
- c++,fp-growth实现两部分fp构建和fp-gr
- 客房管理系统含一万字论文
- 功能强大的多条曲线绘制类 (MFC,
- 池塘夜降彩色雨
- 声波方程有限差分数值模拟程序C++
评论
共有 条评论