资源简介
在vs2010中建立MFC对话框,通过opencv实现图像的采集、保存、播放本地视频、通过滑块控制播放进度。
代码片段和文件信息
#include “StdAfx.h“
#include “CvvImage.h“
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CV_INLINE RECT NormalizeRect( RECT r );
CV_INLINE RECT NormalizeRect( RECT r )
{
int t;
if( r.left > r.right )
{
t = r.left;
r.left = r.right;
r.right = t;
}
if( r.top > r.bottom )
{
t = r.top;
r.top = r.bottom;
r.bottom = t;
}
return r;
}
CV_INLINE CvRect RectToCvRect( RECT sr );
CV_INLINE CvRect RectToCvRect( RECT sr )
{
sr = NormalizeRect( sr );
return cvRect( sr.left sr.top sr.right - sr.left sr.bottom - sr.top );
}
CV_INLINE RECT CvRectToRect( CvRect sr );
CV_INLINE RECT CvRectToRect( CvRect sr )
{
RECT dr;
dr.left = sr.x;
dr.top = sr.y;
dr.right = sr.x + sr.width;
dr.bottom = sr.y + sr.height;
return dr;
}
CV_INLINE IplROI RectToROI( RECT r );
CV_INLINE IplROI RectToROI( RECT r )
{
IplROI roi;
r = NormalizeRect( r );
roi.xOffset = r.left;
roi.yOffset = r.top;
roi.width = r.right - r.left;
roi.height = r.bottom - r.top;
roi.coi = 0;
return roi;
}
void FillBitmapInfo( BITMAPINFO* bmi int width int height int bpp int origin )
{
assert( bmi && width >= 0 && height >= 0 && (bpp == 8 || bpp == 24 || bpp == 32));
BITMAPINFOHEADER* bmih = &(bmi->bmiHeader);
memset( bmih 0 sizeof(*bmih));
bmih->biSize = sizeof(BITMAPINFOHEADER);
bmih->biWidth = width;
bmih->biHeight = origin ? abs(height) : -abs(height);
bmih->biPlanes = 1;
bmih->biBitCount = (unsigned short)bpp;
bmih->biCompression = BI_RGB;
if( bpp == 8 )
{
RGBQUAD* palette = bmi->bmiColors;
int i;
for( i = 0; i < 256; i++ )
{
palette[i].rgbBlue = palette[i].rgbGreen = palette[i].rgbRed = (BYTE)i;
palette[i].rgbReserved = 0;
}
}
}
CvvImage::CvvImage()
{
m_img = 0;
}
void CvvImage::Destroy()
{
cvReleaseImage( &m_img );
}
CvvImage::~CvvImage()
{
Destroy();
}
bool CvvImage::Create( int w int h int bpp int origin )
{
const unsigned max_img_size = 10000;
if( (bpp != 8 && bpp != 24 && bpp != 32) ||
(unsigned)w >= max_img_size || (unsigned)h >= max_img_size ||
(origin != IPL_ORIGIN_TL && origin != IPL_ORIGIN_BL))
{
assert(0); // most probably it is a programming error
return false;
}
if( !m_img || Bpp() != bpp || m_img->width != w || m_img->height != h )
{
if( m_img && m_img->nSize == sizeof(IplImage))
Destroy();
/* prepare IPL header */
m_img = cvCreateImage( cvSize( w h ) IPL_DEPTH_8U bpp/8 );
}
if( m_img )
m_img->origin = origin == 0 ? IPL_ORIGIN_TL : IPL_ORIGIN_BL;
return m_img != 0;
}
void CvvImage::CopyOf( CvvImage& image int desired_color )
{
IplImage* img = image.GetImage();
if( img )
{
CopyOf( img desired_color );
}
}
#define HG_IS_IMAGE(img)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 198144 2016-04-26 16:45 Test\Debug\Test.exe
文件 1343352 2016-04-26 16:45 Test\Debug\Test.ilk
文件 6253568 2016-04-26 16:45 Test\Debug\Test.pdb
文件 6960 2012-03-14 16:52 Test\Test\CvvImage.cpp
文件 1957 2012-03-14 16:52 Test\Test\CvvImage.h
文件 2910 2016-04-26 16:45 Test\Test\Debug\cl.command.1.tlog
文件 98928 2016-04-26 16:45 Test\Test\Debug\CL.read.1.tlog
文件 1756 2016-04-26 16:45 Test\Test\Debug\CL.write.1.tlog
文件 131494 2016-04-26 16:25 Test\Test\Debug\CvvImage.obj
文件 2 2016-04-26 16:45 Test\Test\Debug\li
文件 2 2016-04-26 16:45 Test\Test\Debug\li
文件 3466 2016-04-26 16:45 Test\Test\Debug\li
文件 9464 2016-04-26 16:45 Test\Test\Debug\li
文件 1104 2016-04-26 16:45 Test\Test\Debug\li
文件 720 2016-04-26 16:45 Test\Test\Debug\mt.command.1.tlog
文件 648 2016-04-26 16:45 Test\Test\Debug\mt.read.1.tlog
文件 466 2016-04-26 16:45 Test\Test\Debug\mt.write.1.tlog
文件 1044 2016-04-26 16:25 Test\Test\Debug\rc.command.1.tlog
文件 3520 2016-04-26 16:25 Test\Test\Debug\rc.read.1.tlog
文件 462 2016-04-26 16:25 Test\Test\Debug\rc.write.1.tlog
文件 642708 2016-04-26 16:25 Test\Test\Debug\stdafx.obj
文件 1754 2016-04-26 16:25 Test\Test\Debug\Test.Build.CppClean.log
文件 915 2016-04-26 16:25 Test\Test\Debug\Test.exe.em
文件 980 2016-04-26 16:25 Test\Test\Debug\Test.exe.em
文件 640 2016-04-26 16:45 Test\Test\Debug\Test.exe.intermediate.manifest
文件 58 2016-04-26 16:45 Test\Test\Debug\Test.lastbuildstate
文件 4768 2016-04-26 16:45 Test\Test\Debug\Test.log
文件 30115 2016-04-26 16:25 Test\Test\Debug\Test.obj
文件 33751040 2016-04-26 16:25 Test\Test\Debug\Test.pch
文件 70816 2016-04-26 16:25 Test\Test\Debug\Test.res
............此处省略37个文件信息
- 上一篇:MFC编程TCP通信程序
- 下一篇:VS2010录音程序_音频采集_MFC
相关资源
- VS2010录音程序_音频采集_MFC
- MFC编程TCP通信程序
- MFC TCP多客户端通信(基于CAsyncSocket)
- MFC界面美化之SkinMagic典型
- MFC写的聊天软件客户端
- MFC和openCV看图小程序
- 基于MODBUS RTU MFC上位机软件
- 深入浅出MFC 第二版 Visual C++
- 基于MFC的仪表盘
- MFC开发的多功能高精度计算器含源码
- VS2015 MFC 指示灯报警显示
- 基于MFC的FTP客户端
- VS2008基于MFC的对话框编程串口上位机
- vs2008(mfc)通过ADO连接SQL SERVER 2008
- OpenGL+MFC实现旋转、缩放、平移
- PatchMatch图像修复算法opencv和C++版)
- 明美工业相机开发资料
- 约瑟夫环动态演示
- MFC界面中英文切换
- MFC读取文件夹内容名称 时间 类型
- C++下使用OpenCV实现人脸检测
- 基于MFC opengl读取obj并求法向量
- C++/OpenCV2.4.xx印刷数字精确识别源码
- 用MFC做推箱子源代码
- 基于MFC编程的冒泡排序动态演示
- 基于MFC的画直线,矩形,椭圆改变线
- 使用MFC实现的三角形分形谢尔宾斯基
- MFC实现鼠标点击画折线
- 基于MFC的学生信息管理系统
- mfc绘制贝塞尔曲线曲面
评论
共有 条评论