资源简介
在自动化生产线VC开发的运动控制机器视觉程序,XYZ三个轴有PCI板卡控制,视频卡采集图像后经算法处理找到图像的点,VC控制步进电机到加胶位置加胶,在机器上运行每日点胶100000次无故障,
代码片段和文件信息
// ASED.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “ASED.h“
#include “MainFrm.h“
#include “ASEDDoc.h“
#include “ASEDView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CASEDApp
BEGIN_MESSAGE_MAP(CASEDApp CWinApp)
//{{AFX_MSG_MAP(CASEDApp)
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)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CASEDApp construction
CASEDApp::CASEDApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CASEDApp object
CASEDApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CASEDApp initialization
BOOL CASEDApp::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
HANDLE m_hMutex=CreateMutex(NULLTRUE m_pszAppName);
if(GetLastError()==ERROR_ALREADY_EXISTS)
{
AfxMessageBox(“Error!Program is Running!“MB_OK|MB_IConstop);
return FALSE;
}
// 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(CASEDDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CASEDView));
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->Sh
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 264432 2013-10-24 09:11 ASED\New CAPI ased\ASED.APS
文件 41477 2013-10-24 12:13 ASED\New CAPI ased\ASED.clw
文件 5322 2005-03-02 10:36 ASED\New CAPI ased\ASED.cpp
文件 10666 2007-07-18 10:47 ASED\New CAPI ased\ASED.dsp
文件 533 2005-01-14 10:51 ASED\New CAPI ased\ASED.dsw
文件 1334 2005-01-03 10:30 ASED\New CAPI ased\ASED.h
文件 5841920 2013-10-24 12:54 ASED\New CAPI ased\ASED.ncb
文件 1643520 2013-10-24 12:54 ASED\New CAPI ased\ASED.opt
文件 2288 2011-01-20 14:43 ASED\New CAPI ased\ASED.plg
文件 33187 2010-11-10 16:00 ASED\New CAPI ased\ASED.rc
文件 17322 2007-08-03 10:51 ASED\New CAPI ased\ASEDDoc.cpp
文件 3115 2010-11-10 14:59 ASED\New CAPI ased\ASEDDoc.h
文件 22703 2007-07-12 15:16 ASED\New CAPI ased\ASEDView.cpp
文件 3507 2011-01-27 15:33 ASED\New CAPI ased\ASEDView.h
文件 10590 2010-11-10 14:53 ASED\New CAPI ased\AutoRun.cpp
文件 2011 2011-01-27 15:33 ASED\New CAPI ased\AutoRun.h
文件 1692 2005-10-24 14:19 ASED\New CAPI ased\common\IniFileProc.cpp
文件 740 2005-10-24 14:19 ASED\New CAPI ased\common\IniFileProc.h
文件 4015104 2007-08-03 14:56 ASED\New CAPI ased\Debug\ASED.bsc
文件 1367232 2007-08-03 14:56 ASED\New CAPI ased\Debug\ASED.ilk
文件 32318 2007-08-03 14:56 ASED\New CAPI ased\Debug\ASED.obj
文件 6898692 2007-08-03 14:55 ASED\New CAPI ased\Debug\ASED.pch
文件 1213440 2007-08-03 14:56 ASED\New CAPI ased\Debug\ASED.pdb
文件 228736 2007-08-03 14:55 ASED\New CAPI ased\Debug\ASED.res
文件 0 2007-08-03 14:56 ASED\New CAPI ased\Debug\ASED.sbr
文件 97502 2007-08-03 14:56 ASED\New CAPI ased\Debug\ASEDDoc.obj
文件 0 2007-08-03 14:56 ASED\New CAPI ased\Debug\ASEDDoc.sbr
文件 82653 2007-08-03 14:56 ASED\New CAPI ased\Debug\ASEDView.obj
文件 0 2007-08-03 14:56 ASED\New CAPI ased\Debug\ASEDView.sbr
文件 47696 2007-08-03 14:56 ASED\New CAPI ased\Debug\AutoRun.obj
............此处省略268个文件信息
- 上一篇:数字电路与逻辑设计刘培植第二版学习指导
- 下一篇:Qt+pcl+vtk 屏幕选点
相关资源
- springMVC+hibernate+spring+shiro整合
- httpd-2.4.38-win64-VC11.zip
- MVC5 + EF 6 + Bootstrap 2 权限管理系统完美
- Microsoft.Runtimes.AIO.2017.Setup
- labelImg_qt5py3_mac_latest 2.zip
- 6轴机械手正解,反解算法;vs2017工程
- 冈萨雷斯《数字图像处理》Digital Im
- springmvc+spring+hibernate
- raize5.51-1
- Springmvc+Hibernate改写传智播客ssh网上商
- SSH-demo IDEA开发工具 学生管理系统
- 初学Spring+SpringMVC+MyBatis框架适合初学
- SpringMVC+Mybatis后台管理系统开发源码可
- 通用仓库管理源码MVC版带数据库
- Reyco郭-Spring4+SpringMVC+Mybatis讲义
- spring mvc 增删改查小项目
- Visual C 6.0
- SSM实现用户注册登录以及增加删除修
- Handbook of Image Quality Characterization and
- Shiro学习,以及与SpringMVC整合,标签注
- springMVC+myBatis增删改查小程序
- SDL Game Development source code and image
- 软件体系架构PPT Spring SpringMVC Mybat
- VC黑白棋小游戏
- 2019最新.Net MVC微信授权登录及微信支
- spring MVC 项目商城
-
TextureView+MediaPla
yer播放本地视频MV - springmvc的一个简单的框架
- ssm+bootstrap+angularJs案例
- MVC5列表—排序、过滤、分页
评论
共有 条评论