资源简介

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个文件信息

评论

共有 条评论