资源简介
Opencv和vc++6.0一些常用图像处理算法程序,包括二值化,灰度化,去噪声,人脸识别反色等。

代码片段和文件信息
// Image.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Image.h“
#include “ImageDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CImageApp
BEGIN_MESSAGE_MAP(CImageApp CWinApp)
//{{AFX_MSG_MAP(CImageApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CImageApp construction
CImageApp::CImageApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CImageApp object
CImageApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CImageApp initialization
BOOL CImageApp::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
CImageDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 634934 2012-03-06 20:34 Image\cv100.dll
文件 1294391 2012-03-06 20:34 Image\cv100d.dll
文件 1265722 2012-03-06 20:34 Image\cv100d_i7.dll
文件 655428 2012-03-06 20:34 Image\cv100_i7.dll
文件 49152 2006-10-19 17:16 Image\cvcam100.dll
文件 880698 2012-03-06 20:34 Image\cxcore100.dll
文件 1638459 2012-03-06 20:34 Image\cxcore100d.dll
文件 1581118 2012-03-06 20:34 Image\cxcore100d_i7.dll
文件 1269836 2012-03-06 20:34 Image\cxcore100_i7.dll
文件 81987 2012-03-06 20:23 Image\cxts001.dll
文件 176196 2012-03-06 20:23 Image\cxts001d.dll
文件 167996 2012-03-06 20:23 Image\cxts001d_i7.dll
文件 81992 2012-03-06 20:23 Image\cxts001_i7.dll
文件 15836 2012-03-08 14:44 Image\Debug\DIBAPI.obj
文件 0 2012-03-08 14:44 Image\Debug\DIBAPI.sbr
文件 15864 2012-03-08 14:41 Image\Debug\DINAPI.obj
文件 0 2012-03-08 14:41 Image\Debug\DINAPI.sbr
文件 4236288 2012-03-30 11:41 Image\Debug\Image.bsc
文件 2129974 2012-03-30 11:41 Image\Debug\Image.exe
文件 2524924 2012-03-30 11:41 Image\Debug\Image.ilk
文件 14229 2012-03-17 14:58 Image\Debug\Image.obj
文件 6970024 2012-03-08 14:44 Image\Debug\Image.pch
文件 4137984 2012-03-17 14:58 Image\Debug\Image.pdb
文件 8840 2012-03-16 20:57 Image\Debug\Image.res
文件 0 2012-03-17 14:58 Image\Debug\Image.sbr
文件 51482 2012-03-30 11:41 Image\Debug\ImageDlg.obj
文件 0 2012-03-30 11:41 Image\Debug\ImageDlg.sbr
文件 105671 2012-03-08 14:44 Image\Debug\StdAfx.obj
文件 1362227 2012-03-08 14:44 Image\Debug\StdAfx.sbr
文件 279552 2012-04-18 10:24 Image\Debug\vc60.idb
............此处省略35个文件信息
- 上一篇:支持向量机C语言程序
- 下一篇:RBF神经网络C++源码
相关资源
- 用C语言进行数字图像处理
- 人脸识别(opencv_facedetect_v4l2)
- 基于opencv的模板匹配代码
- basler相机图像采集和显示
- opencv图片扫描以及校正
- opencv手部轮廓识别以及轨迹识别
- opencv2 3D标定.cpp
- 基于opencv漫水填充算法综合
- VC++6.0番茄西红柿VAXvirsual assist X完美破
- opencv激光中心线的提取
- VC++6.0 绿色版,免安装,非常好用。
- VC++6.0汉化包
- Visual+C++数字图像处理-谢凤英-源代码
- OpenCV Computer Vision Application Programming
- 基于图割的图像分割OpenCV+MFC实现
- 识别魔方颜色
- opencv版俄罗斯方块源码
- Bmp图像处理.zip
- VC++数字图像处理典型算法及实现
- 车站计算机联锁vc++6.0程序代码
- VS2013 / MFC + OpenCV 2.4.9实现视频的播放
- 成绩管理系统VC++6.0
- VC++6.0技术内幕第五版中文版+英文版
- 粒子滤波器+目标跟踪的C++实现,VS2
- 张平OpenCV算法精讲基于python和C++教材
- VC6.0 完整的图像处理程序 运用了大量
- MFC多人聊天室
- VC图像处理-用Canny算子提取边缘
- VC++6.0 简体中文版 msdn
- 虹膜识别开源代码OSIRIS4.1基于opencv
评论
共有 条评论