• 大小: 1.8MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-31
  • 语言: 其他
  • 标签: VC  vfm  webcam  摄像头  

资源简介

本程序用于提取摄像头实时数据。 没有使用opencv ,而是使用了vfm类库提取实时数据...

资源截图

代码片段和文件信息

// Camera02.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “Camera02.h“
#include “Camera02Dlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CCamera02App

BEGIN_MESSAGE_MAP(CCamera02App CWinApp)
//{{AFX_MSG_MAP(CCamera02App)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CCamera02App construction

CCamera02App::CCamera02App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CCamera02App object

CCamera02App theApp;

/////////////////////////////////////////////////////////////////////////////
// CCamera02App initialization

BOOL CCamera02App::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

CCamera02Dlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      21088  2010-11-18 14:48  Camera02\Camera02.aps

     文件       1232  2010-11-18 14:48  Camera02\Camera02.clw

     文件       2091  2009-11-07 22:59  Camera02\Camera02.cpp

     文件       4195  2009-11-07 22:59  Camera02\Camera02.dsp

     文件        541  2009-11-07 23:37  Camera02\Camera02.dsw

     文件       1346  2009-11-07 22:59  Camera02\Camera02.h

     文件      74752  2010-11-18 14:48  Camera02\Camera02.ncb

     文件       1723  2010-11-18 14:48  Camera02\Camera02.plg

     文件       5368  2009-11-07 23:17  Camera02\Camera02.rc

     文件       5567  2009-11-07 23:23  Camera02\Camera02Dlg.cpp

     文件       1496  2009-11-07 23:14  Camera02\Camera02Dlg.h

     文件       3615  2009-11-07 22:59  Camera02\ReadMe.txt

     文件        210  2009-11-07 22:59  Camera02\StdAfx.cpp

     文件       1054  2009-11-07 22:59  Camera02\StdAfx.h

     文件        824  2009-11-07 23:17  Camera02\resource.h

     文件      48640  2010-11-18 14:48  Camera02\Camera02.opt

     文件       2568  2010-11-18 14:48  Camera02\Debug\Camera02.res

     文件     214016  2010-11-18 14:48  Camera02\Debug\vc60.idb

     文件    5502316  2010-11-18 14:48  Camera02\Debug\Camera02.pch

     文件     397312  2010-11-18 14:48  Camera02\Debug\vc60.pdb

     文件     105789  2010-11-18 14:48  Camera02\Debug\StdAfx.obj

     文件      36336  2010-11-18 14:48  Camera02\Debug\Camera02Dlg.obj

     文件      13246  2010-11-18 14:48  Camera02\Debug\Camera02.obj

     文件     188696  2010-11-18 14:48  Camera02\Debug\Camera02.ilk

     文件     106587  2010-11-18 14:48  Camera02\Debug\Camera02.exe

     文件     271360  2010-11-18 14:48  Camera02\Debug\Camera02.pdb

     文件       1078  2009-11-07 22:59  Camera02\res\Camera02.ico

     文件        400  2009-11-07 22:59  Camera02\res\Camera02.rc2

     目录          0  2010-11-18 14:48  Camera02\Debug

     目录          0  2010-11-18 14:48  Camera02\res

............此处省略4个文件信息

评论

共有 条评论