欢迎来到天天文库
浏览记录
ID:18062214
大小:81.86 KB
页数:8页
时间:2018-09-13
《mfc通过opencv显示摄像头》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、在MFC中通过opencv显示摄像头视频或者文件视频分类:c++2012-03-1614:5615136人阅读评论(75)收藏举报mfcinitializationwizardapplicationnullsystem这里通过MFC显示摄像头视频,同样要用到CvvImage类,本人用的opencv2.3.1的版本,这里没有这个类,所以仍然需要手动加入这个类的头文件和代码文件。关于CvvImage类的说明请看:http://blog.csdn.net/weixingstudio/article/details/7357651http://blog.csdn.net/weixings
2、tudio/article/details/7357558 然后就是搭建工程了。这里就不多说界面的设计了。我这里的界面如图所示,有一个开始打开摄像头的按钮,一个关闭摄像头的按钮。有一个PictureBox的控件。 为了能够在PictureBox里面显示图片,我们需要定义一些变量来获取PictureBox的句柄。在主窗口的cpp文件中,添加如下的全局变量:[cpp]viewplaincopyprint?otherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOffice
3、inJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretary
4、andrecorderoftheCountypartyCommitteeSecretary,Ministersand1.CvCapture* capture; 2.CRect rect; 3.CDC *pDC; 4.HDC hDC; 5.CWnd *pwnd; CvCapture*capture;CRectrect;CDC*pDC;HDChDC;CWnd*pwnd; 这里特别注意,这些变量一定要是全局变量。再来看一下这些变量的添加位置:[cpp]viewplaincopyprint?1.#include "stdafx.h" 2.#include "VideoMFC.
5、h" 3.#include "VideoMFCDlg.h" 4.#include "afxdialogex.h" 5. 6.#ifdef _DEBUG 7.#define new DEBUG_NEW 8.#endif 9. 10. 11.CvCapture* capture; 12.CRect rect; 13.CDC *pDC; 14.HDC hDC; 15.CWnd *pwnd; 16. 17.// CAboutDlg dialog used for App About 18. 19.class CAboutDlg : public CDia
6、logEx 20.{ 21.public: #include"stdafx.h"#include"VideoMFC.h"#include"VideoMFCDlg.h"#include"afxdialogex.h"#ifdef_DEBUG#definenewDEBUG_NEW#endifCvCapture*capture;CRectrect;CDC*pDC;HDChDC;CWnd*pwnd;//CAboutDlgdialogusedforAppAboutclassCAboutDlg:publicCDialogEx{public: 然后在窗口的初始化函数中进行句柄的初始化:ot
7、herstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMar
此文档下载收益归作者所有