资源简介
包括整个工程的源代码,在OpenCV2.4.3+VS2008平台编译通过。
代码片段和文件信息
#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 ==
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-11-09 18:51 VideoPla
目录 0 2015-11-09 18:51 VideoPla
文件 22531072 2015-11-09 18:51 VideoPla
目录 0 2015-11-10 13:49 VideoPla
文件 2259968 2015-11-10 13:49 VideoPla
文件 14748672 2015-11-10 13:49 VideoPla
目录 0 2015-11-10 13:49 VideoPla
文件 6606 2015-10-25 12:52 VideoPla
文件 1925 2015-10-25 12:52 VideoPla
目录 0 2015-11-09 18:51 VideoPla
文件 8886 2015-11-09 18:51 VideoPla
文件 165064 2015-11-09 18:51 VideoPla
文件 682 2015-11-09 16:49 VideoPla
文件 748 2015-11-09 16:49 VideoPla
文件 640 2015-11-09 18:51 VideoPla
文件 25187 2015-11-09 16:48 VideoPla
文件 40239104 2015-11-09 16:48 VideoPla
文件 79580 2015-11-09 18:51 VideoPla
文件 71989 2015-11-09 16:48 VideoPla
文件 67 2015-11-09 16:49 VideoPla
文件 614463 2015-11-09 16:48 VideoPla
文件 2214912 2015-11-09 18:51 VideoPla
文件 4075520 2015-11-09 18:51 VideoPla
文件 2809 2015-11-09 16:48 VideoPla
目录 0 2015-11-10 13:49 VideoPla
文件 8670 2015-11-10 13:49 VideoPla
文件 888457 2015-11-09 18:51 VideoPla
文件 640 2015-11-10 13:49 VideoPla
文件 884903 2015-11-09 22:06 VideoPla
文件 38076416 2015-11-09 18:51 VideoPla
文件 587612 2015-11-09 22:29 VideoPla
............此处省略24个文件信息
相关资源
- 消费者与生产者
- opencv c++相机标定程序 包含标定图像和
- MFC计算器,加强版的,功能强大,是
- MFC单文档分割视图的基本使用
- 基于winusb的上位机与USB的通信
- 自绘图软件MFC制作
- c++语言opencv加socket实现远程桌面监控
- VS2012 + Opencv2.4.9实现单张人脸检测及人
- MFCSerialPort类实现串口发送16进制数字
- 学生成绩管理系统MFC+SQL Server 2000(程
- 基于opencv的图像检索算法
- 用MFC做的国际象棋源代码
- 基于mfcc特征的dtw算法实现
- 适用于vc6++的openCV1.0
- 可以改变ListCtr控件中的显示颜色和背
- 用二叉树做的心理测试mfc
- 公交车查询系统可换乘 MFC 自己做的
- vs2010 mfc编写的串口助手
- OpenCV MFC实现图像处理大集合
- C++ MFC 调用twain接口采集图像
- 基于mfc的学生信息管理系统159407
- LL1文法消除左递归编译原理mfc实现完
- 基于VLC的MFC播放器
- C++ MFC实现计算器基本功能
- OpenCV1.0版本
- mfc实现抓包程序
- MFC ListCtrl控件上增加Comb以及可编写子
- 初步实现ATM机MFC、 实现ATM系统
- MFC生成二维码并显示的基于qrencode修改
- 基于MFC实现的数独小游戏,可在vc6.
评论
共有 条评论