资源简介
该文档在MFC的框架中实现了图像的圆心提取程序,内含待处理的图像,可以作为初学者练习使用。程序用到OpenCV库的一些简单函数
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “圆心坐标提取.h“
#include “MainFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMainframe
IMPLEMENT_DYNCREATE(CMainframe CframeWnd)
BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR // status line indicator
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};
/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction
CMainframe::CMainframe()
{
// TODO: add member initialization code here
}
CMainframe::~CMainframe()
{
}
int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“Failed to create toolbar\n“);
return -1; // fail to create
}
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1; // fail to create
}
// TODO: Delete these three lines if you don‘t want the toolbar to
// be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
return 0;
}
BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics
#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}
void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 18975 2013-01-16 22:09 圆心坐标提取\1.jpg
文件 20330 2013-01-17 18:15 圆心坐标提取\Debug\MainFrm.obj
文件 0 2013-01-17 18:15 圆心坐标提取\Debug\MainFrm.sbr
文件 106053 2013-01-17 18:15 圆心坐标提取\Debug\StdAfx.obj
文件 1374953 2013-01-17 18:15 圆心坐标提取\Debug\StdAfx.sbr
文件 271360 2013-01-17 19:10 圆心坐标提取\Debug\vc60.idb
文件 438272 2013-01-17 19:08 圆心坐标提取\Debug\vc60.pdb
文件 72285 2013-01-17 18:15 圆心坐标提取\Debug\vision_relate.obj
文件 0 2013-01-17 18:15 圆心坐标提取\Debug\vision_relate.sbr
文件 4244480 2013-01-17 19:08 圆心坐标提取\Debug\圆心坐标提取.bsc
文件 163907 2013-01-17 19:08 圆心坐标提取\Debug\圆心坐标提取.exe
文件 380860 2013-01-17 19:08 圆心坐标提取\Debug\圆心坐标提取.ilk
文件 23178 2013-01-17 18:15 圆心坐标提取\Debug\圆心坐标提取.obj
文件 7066516 2013-01-17 18:15 圆心坐标提取\Debug\圆心坐标提取.pch
文件 549888 2013-01-17 19:08 圆心坐标提取\Debug\圆心坐标提取.pdb
文件 7352 2013-01-12 20:45 圆心坐标提取\Debug\圆心坐标提取.res
文件 0 2013-01-17 18:15 圆心坐标提取\Debug\圆心坐标提取.sbr
文件 14966 2013-01-17 18:15 圆心坐标提取\Debug\圆心坐标提取Doc.obj
文件 0 2013-01-17 18:15 圆心坐标提取\Debug\圆心坐标提取Doc.sbr
文件 45905 2013-01-17 19:08 圆心坐标提取\Debug\圆心坐标提取View.obj
文件 0 2013-01-17 19:08 圆心坐标提取\Debug\圆心坐标提取View.sbr
文件 2513 2013-01-12 20:38 圆心坐标提取\MainFrm.cpp
文件 1581 2013-01-12 20:38 圆心坐标提取\MainFrm.h
文件 4385 2013-01-12 20:38 圆心坐标提取\ReadMe.txt
文件 1078 2013-01-12 20:38 圆心坐标提取\res\Toolbar.bmp
文件 1078 2013-01-12 20:38 圆心坐标提取\res\圆心坐标提取.ico
文件 404 2013-01-12 20:38 圆心坐标提取\res\圆心坐标提取.rc2
文件 1078 2013-01-12 20:38 圆心坐标提取\res\圆心坐标提取Doc.ico
文件 690 2013-01-12 20:45 圆心坐标提取\resource.h
文件 214 2013-01-12 20:38 圆心坐标提取\StdAfx.cpp
............此处省略27个文件信息
- 上一篇:Windows编程大作业
- 下一篇:OpenTSTOOL-1.2
相关资源
- Windows编程大作业
- VC++ 6.0 msdn中文版
- C# VC++ BHO 源码以及教程大全
- 用VC++写的小型FTP服务器源代码
- VC++ 串口通信modbus协议源代码
- VC++6.0 分布式坦克大战游戏 源码
- Matlab图像嵌入VC++界面的实现
- 基于MFC的VC++俄罗斯方块程序源代码
- vc下的sift程序
- SMTP邮件发送MFC、VC++
- VC++实现WORD事件处理与报表输出功能
- VC++实现的车牌定位与识别系统
- DES原理及实现步骤,以及VC++关于DES加
- vc++图像处理程序设计104124
- VC++和OpenGL读取3DS文件并显示的完整源
- VC++ 实现Diffie-Hellman密钥交换算法
- VC++MFC学生管理系统
- 进程管理模拟 VC++ mfc实现
- 用openCV实现图像灰度化并保存,MFC实
- 七巧板VC++实现
- OpenCV多通道图像混合程序 by浅墨
- 使用TCP简单文件传输控制台程序VC++
- VC H264格式视屏播放器源码
- VC++ 6.0 TCP 通讯(服务器端和客户端)
- VC++ 的协议分析器
- 经典手眼标定算法C++代码
- 串口调试工具 VC++源代码 (龚建伟版
- 基于OPNET的TCP协议研究与仿真论文
- vc++ 在opc开发的应用
- 动物识别系统 VC++ 逆向搜索 正向搜索
评论
共有 条评论