资源简介
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语言(读入图像,直方图均
- c++开发ocx入门实践三--基于opencv的简易
- opencv+c++实现人脸识别
- 基于OPENCV的完整图像处理程序
- MFC下opencv的图像处理源码
- OpenCV C++完整的车牌识别系统.rar
- vc++mfc经典数字图像处理程序
- MFC数字图像处理
- VC++6.0编译通过的读写CSV文件的代码及
- MFC停车场车辆信息管理系统附数据库
- VC++实现灰度图像的6种边缘检测算子
- OpenCV_MFC_版本1.0.1
- OpenCV_MFC_版本1.0
- VC++图像处理源码库
- C++语言编写图像处理程序
- opencv MFC 摄像头 人脸识别
- VC++实现Contourlet图像处理
- 数字图像处理中值,均值滤波
- 实用的角度识别OPENCV
- opencv结合MFC进行人脸检测
- 基于opencv的傅里叶描述子VC++代码
- 简单的OpenCV实现摄像头实时显示和视
- 图像处理基本的算法边缘,梯度,均
- Mastering Opencv3英文第二版
- Opencv+MFC框架图像处理
- opencv之数字识别
- grabcut的c++源代码
- 遥感图像拉伸代码
- 车牌识别 openCV mfc BP神经网络
- 图像质量评价用程序
评论
共有 条评论