资源简介
VS2013 / MFC + OpenCV 2.4.9实现视频的播放暂停和结束
代码片段和文件信息
#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)\
((img) != 0 && ((const IplImage*)(img))->nSize == sizeof(IplImage) &&\
((IplImage*)img)->imageDat
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 92930048 2016-04-01 12:57 VideoPla
文件 92930048 2016-03-01 22:29 VideoPla
文件 6547 2016-02-25 16:08 VideoPla
文件 1925 2016-02-29 14:42 VideoPla
文件 4112 2016-03-01 21:01 VideoPla
....... 67777 2013-07-22 01:18 VideoPla
文件 678 2016-03-01 21:01 VideoPla
文件 1608 2016-03-01 21:24 VideoPla
文件 144 2016-03-01 21:01 VideoPla
文件 1578 2016-03-01 21:01 VideoPla
文件 234 2016-03-01 21:01 VideoPla
文件 109032 2016-03-02 15:31 VideoPla
文件 2439 2016-03-01 21:01 VideoPla
文件 473 2016-03-01 21:01 VideoPla
文件 11022 2016-03-02 15:31 VideoPla
文件 6255 2016-04-01 12:59 VideoPla
文件 2265 2016-03-01 21:39 VideoPla
文件 5692 2016-04-01 12:58 VideoPla
文件 853 2016-03-01 22:29 VideoPla
文件 1818624 2015-02-16 13:45 VideoPla
文件 88539136 2016-04-01 12:59 VideoPla
文件 979 2016-03-01 21:01 VideoPla
..A..H. 35840 2016-04-01 12:59 VideoPla
目录 0 2016-04-01 12:59 VideoPla
目录 0 2016-04-01 12:57 VideoPla
目录 0 2016-03-01 22:29 VideoPla
目录 0 2016-04-01 12:59 VideoPla
目录 0 2016-03-01 21:01 VideoPla
目录 0 2016-04-01 12:59 VideoPla
目录 0 2016-03-02 12:33 VideoPla
............此处省略6个文件信息
- 上一篇:opengl实现水流效果sph
- 下一篇:C语言考研真题汇编 高清PDF
相关资源
- 粒子滤波器+目标跟踪的C++实现,VS2
- 张平OpenCV算法精讲基于python和C++教材
- 虹膜识别开源代码OSIRIS4.1基于opencv
- Sift特征点提取与匹配opencv库
- YCbCr、混合高斯以及YCbCg肤色检测模型
- 光流法代码
- OpenCV打开摄像机显示在MFC窗口工程源
- 使用c++读取图像到二维矩阵
- 三维点云的圆柱面拟合
- MFC+OPENCV摄像机标定程序
- 基于特征脸的人脸识别MFC+OpenCV
- opencv图像处理MFC
- OPENCV人脸检测加角点检测并输出坐标
- FillHole.rar
- 道路提取算法 c++ opencv
- PCA代码实现详解
- opencv卡尔曼滤波
- SeamCarving opencv c++
- opencv prewitt边缘检测
- MFC中使用OpenCV显示选定文件夹中所有
- 车牌识别系统和车型识别系统源代码
- opencv 模糊C均值 c++
- 基于opencv的图像配准程序
- VC++直方图均衡化显示图像及直方图
- Opencv+VC6.0实现摄像头视频的监控
- opencv入门教程(C++版)
- 简单的几何图形识别程序源代码
- 虹膜分割 Iris Segmentation C++和opencv实现
- C++(OPENCV)摄像头标定代码带图片O
- 基于Opencv的交通流量实时检测
评论
共有 条评论