今天用vs2010打开vs2008的一个工程,报了好多错:

1>e:\visual studio 2010\projects\imageprojects\morphology\morphology\MorphologyDoc.h(41): error C2146: 语法错误: 缺少“;”(在标识符“m_imgOrg”的前面)
1>e:\visual studio 2010\projects\imageprojects\morphology\morphology\MorphologyDoc.h(41): error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int
1>e:\visual studio 2010\projects\imageprojects\morphology\morphology\MorphologyDoc.h(41): error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int
1>e:\visual studio 2010\projects\imageprojects\morphology\morphology\MorphologyDoc.h(42): error C2146: 语法错误: 缺少“;”(在标识符“m_imgProcessed”的前面)
1>e:\visual studio 2010\projects\imageprojects\morphology\morphology\MorphologyDoc.h(42): error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int
1>e:\visual studio 2010\projects\imageprojects\morphology\morphology\MorphologyDoc.h(42): error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int
1>e:\visual studio 2010\projects\imageprojects\morphology\morphology\MorphologyDoc.h(43): error C2143: 语法错误 : 缺少“;”(在“*”的前面)
1>e:\visual studio 2010\projects\imageprojects\morphology\morphology\MorphologyDoc.h(43): error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int
1>e:\visual studio 2010\projects\imageprojects\morphology\morphology\MorphologyDoc.h(43): error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int

……

纠结了好久,原来是因为:高版本的opencv,把原来的CvvImage整个类给删除掉了,因此在MFC下使用带来诸多不方便,所以要弄一个CvvImage.h 和 一个CvvImage.cpp 文件放到项目里面一起编译就可以了。

具体解决办法:

1、把CvvImage.h、CvvImage.cpp两个文件放到项目里面

2、在解决方案资源管理器中添加现有项,把这两个文件添加进去

3、在刚刚报错的文件中添加头文件#include "CvvImage.h"

下面附上CvvImage.h和CvvImage.cpp源码:

// CvvImage.h

#pragma once

#ifndef CVVIMAGE_CLASS_DEF
#define CVVIMAGE_CLASS_DEF #include "opencv.hpp" class CvvImage{
public:
CvvImage();
virtual ~CvvImage(); virtual bool Create( int width, int height, int bits_per_pixel, int image_origin = ); virtual bool Load( const char* filename, int desired_color = ); virtual bool LoadRect( const char* filename,
int desired_color, CvRect r ); #if defined WIN32 || defined _WIN32
virtual bool LoadRect( const char* filename,
int desired_color, RECT r )
{
return LoadRect( filename, desired_color,
cvRect( r.left, r.top, r.right - r.left, r.bottom - r.top ));
}
#endif virtual bool Save( const char* filename ); virtual void CopyOf( CvvImage& image, int desired_color = - );
virtual void CopyOf( IplImage* img, int desired_color = - ); IplImage* GetImage() { return m_img; };
virtual void Destroy(void); int Width() { return !m_img ? : !m_img->roi ? m_img->width : m_img->roi->width; };
int Height() { return !m_img ? : !m_img->roi ? m_img->height : m_img->roi->height;};
int Bpp() { return m_img ? (m_img->depth & )*m_img->nChannels : ; }; virtual void Fill( int color ); virtual void Show( const char* window ); #if defined WIN32 || defined _WIN32
virtual void Show( HDC dc, int x, int y, int width, int height, int from_x = , int from_y = );
virtual void DrawToHDC( HDC hDCDst, RECT* pDstRect );
#endif protected: IplImage* m_img;
}; //typedef CvvImage CImage;
namespace cv
{
typedef CvvImage CImage;
} #endif
//CvvImage.cpp

#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 = ; return roi;
} void FillBitmapInfo( BITMAPINFO* bmi, int width, int height, int bpp, int origin ) {
assert( bmi && width >= && height >= && (bpp == || bpp == || bpp == )); BITMAPINFOHEADER* bmih = &(bmi->bmiHeader); memset( bmih, , sizeof(*bmih));
bmih->biSize = sizeof(BITMAPINFOHEADER);
bmih->biWidth = width;
bmih->biHeight = origin ? abs(height) : -abs(height);
bmih->biPlanes = ;
bmih->biBitCount = (unsigned short)bpp;
bmih->biCompression = BI_RGB; if( bpp == ) {
RGBQUAD* palette = bmi->bmiColors;
int i;
for( i = ; i < ; i++ ) {
palette[i].rgbBlue = palette[i].rgbGreen = palette[i].rgbRed = (BYTE)i;
palette[i].rgbReserved = ;
}
}
} CvvImage::CvvImage() { m_img = ; } 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 = ; if( (bpp != && bpp != && bpp != ) || (unsigned)w >= max_img_size || (unsigned)h >= max_img_size ||
(origin != IPL_ORIGIN_TL && origin != IPL_ORIGIN_BL)) {
assert(); // 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(); m_img = cvCreateImage( cvSize( w, h ), IPL_DEPTH_8U, bpp/ );
} if( m_img )
m_img->origin = origin == ? IPL_ORIGIN_TL : IPL_ORIGIN_BL; return m_img != ;
} void CvvImage::CopyOf( CvvImage& image, int desired_color ) {
IplImage* img = image.GetImage();
if( img ) {
CopyOf( img, desired_color );
}
} #define HG_IS_IMAGE(img) \
((img) != && ((const IplImage*)(img))->nSize == sizeof(IplImage) && \
((IplImage*)img)->imageData != ) void CvvImage::CopyOf( IplImage* img, int desired_color ){
if( HG_IS_IMAGE(img) ) {
int color = desired_color;
CvSize size = cvGetSize( img ); if( color < )
color = img->nChannels > ; if( Create( size.width, size.height, (!color ? : img->nChannels > ? img->nChannels : )*, img->origin )) {
cvConvertImage( img, m_img, );
}
}
} bool CvvImage::Load( const char* filename, int desired_color ){
IplImage* img = cvLoadImage( filename, desired_color );
if( !img ) return false; CopyOf( img, desired_color );
cvReleaseImage( &img ); return true;
} bool CvvImage::LoadRect( const char* filename, int desired_color, CvRect r ){
if( r.width < || r.height < ) return false; IplImage* img = cvLoadImage( filename, desired_color );
if( !img ) return false; if( r.width == || r.height == ) {
r.width = img->width;
r.height = img->height;
r.x = r.y = ;
} if( r.x > img->width || r.y > img->height || r.x + r.width < || r.y + r.height < ) {
cvReleaseImage( &img );
return false;
} if( r.x < ) {
r.width += r.x;
r.x = ;
}
if( r.y < ) {
r.height += r.y;
r.y = ;
} if( r.x + r.width > img->width ) r.width = img->width - r.x; if( r.y + r.height > img->height ) r.height = img->height - r.y; cvSetImageROI( img, r );
CopyOf( img, desired_color ); cvReleaseImage( &img );
return true;
} bool CvvImage::Save( const char* filename ){
if( !m_img ) return false;
cvSaveImage( filename, m_img );
return true;
} void CvvImage::Show( const char* window ){
if( m_img ) cvShowImage( window, m_img );
} void CvvImage::Show( HDC dc, int x, int y, int w, int h, int from_x, int from_y ){
if( m_img && m_img->depth == IPL_DEPTH_8U ) {
uchar buffer[sizeof(BITMAPINFOHEADER) + ];
BITMAPINFO* bmi = (BITMAPINFO*)buffer;
int bmp_w = m_img->width, bmp_h = m_img->height; FillBitmapInfo( bmi, bmp_w, bmp_h, Bpp(), m_img->origin ); from_x = MIN( MAX( from_x, ), bmp_w - );
from_y = MIN( MAX( from_y, ), bmp_h - ); int sw = MAX( MIN( bmp_w - from_x, w ), );
int sh = MAX( MIN( bmp_h - from_y, h ), ); SetDIBitsToDevice(
dc, x, y, sw, sh, from_x, from_y, from_y, sh,
m_img->imageData + from_y*m_img->widthStep,
bmi, DIB_RGB_COLORS );
}
} void CvvImage::DrawToHDC( HDC hDCDst, RECT* pDstRect ){
if( pDstRect && m_img && m_img->depth == IPL_DEPTH_8U && m_img->imageData ) {
uchar buffer[sizeof(BITMAPINFOHEADER) + ];
BITMAPINFO* bmi = (BITMAPINFO*)buffer;
int bmp_w = m_img->width, bmp_h = m_img->height; CvRect roi = cvGetImageROI( m_img );
CvRect dst = RectToCvRect( *pDstRect ); if( roi.width == dst.width && roi.height == dst.height ) {
Show( hDCDst, dst.x, dst.y, dst.width, dst.height, roi.x, roi.y );
return;
} if( roi.width > dst.width ) {
SetStretchBltMode( hDCDst, HALFTONE ); // handle to device context }
else {
SetStretchBltMode(hDCDst, COLORONCOLOR );
} FillBitmapInfo( bmi, bmp_w, bmp_h, Bpp(), m_img->origin ); ::StretchDIBits(
hDCDst,
dst.x, dst.y, dst.width, dst.height,
roi.x, roi.y, roi.width, roi.height,
m_img->imageData, bmi, DIB_RGB_COLORS, SRCCOPY );
}
} void CvvImage::Fill( int color ){
cvSet( m_img, cvScalar(color&,(color>>)&,(color>>)&,(color>>)&) );
}

VS2010中 报错:error C2146、error C4430 原因一:缺少CvvImage类的更多相关文章

  1. mac系统中搭建apache+mysql+php的开发环境,安装mysql后,登录报错:mac ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

    php新手在mac系统中搭建apache+mysql+php的开发环境(按照这篇博客来操作的:http://my.oschina.net/joanfen/blog/171109?fromerr=xvC ...

  2. MFC项目中:报错:“fatal error LNK1561: 必须定义入口点”解决方法

    编译的时候,报错:“fatal error LNK1561: 必须定义入口点” 解决方案1: 右键->属性->链接器->高级->入口点,设置成:WinMainCRTStartu ...

  3. http报错之return error code:401 unauthorized

     http报错之return error code:401 unauthorized 依据HTTP返回码所表示的意思应该是未授权,没有输入账号和password,因此解决方法就直接在HTTP包里面 ...

  4. PHP编译安装报错:configure: error: mcrypt.h not found. Please reinstall libmcrypt

    我是在CentOS6.5安装php5.5.28这个版本,PHP编译代码如下: ./configure --prefix=/usr/local/php --with-config-file-path=/ ...

  5. Maven进行install的时候报错,COMPILATION ERROR : Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.13:test (default-test) on project cmu: There are test failures.

    maven进行install的时候,test类里面报错: COMPILATION ERROR : [INFO] -------------------------------------------- ...

  6. python3+selenium使用浏览器IE的时候,无法打开IE浏览器,老是报错: Unexpected error launching Internet Explorer. Protected Mode settings are not the same for all zones

    python3+selenium使用浏览器IE的时候,老是报错: Unexpected error launching Internet Explorer. Protected Mode settin ...

  7. mysql修改后启动my.cnf报错Starting MySQL... ERROR! The server quit without updating PID file (/var/lib/mysql/localhost.localdomain.pid).

    mysql中文乱码解决 mysql修改my.cnf后启动报错Starting MySQL... ERROR! The server quit without updating PID file (/v ...

  8. VS经常报错的link error 2019

    VS经常报错的link error 2019 原因如下: 可能是找得到头文件,但是相关的dll或者lib找不到,需要在配置里面添加相应的库文件. project=>configuration.. ...

  9. 解决FPDF报错:FPDF error: Not a JPEG file / FPDF error: Not a PNG file

    最近有个项目需要用到FPDF,但是输出的时候报错: FPDF error: Not a JPEG file: http://***/data/attachment/forum/201603/19/10 ...

随机推荐

  1. ADO之密码验证--3次错误就锁定

    这个程序是那vs2010下写的,C#语言.数据库是sql server 2008 首先在数据库中新建一个数据库Test1,在数据库中新建一个表用来保存用户名和密码USERINFO, CREATE TA ...

  2. 使用 SceneLoader 类在 XNA 中显示载入屏幕(十)

    平方已经开发了一些 Windows Phone 上的一些游戏,算不上什么技术大牛.在这里分享一下经验,仅为了和各位朋友交流经验.平方会逐步将自己编写的类上传到托管项目中,没有什么好名字,就叫 WPXN ...

  3. STW 团队项目分析

    序言 经过我们团队的详细讨论,最终确定我们的项目立意,它包含这我们每个人的观点,我相信我们可以做的很好,Believe......................................... ...

  4. linux自动执行指令crontab和at

    目录 1 at和crontab指令 2 batch 一.at与crontab的区别 运行方式不同 at只运行一次,crontab循环运行 依赖的服务不同 at 对应的服务是 atd crontab 对 ...

  5. pc端自适应方案

    一.常见处理方式 定宽 电商类.内容为主的网站几乎采用这种方式 1.网易考拉.京东(1190px) 2.知乎(1000px),果壳(1000px),网易新闻(1200px) 媒体查询+定宽 图片类.简 ...

  6. 第四篇:python基础_4

    本篇内容 名称空间与作用域 闭包函数 装饰器 迭代器 生成器 三元表达式 列表解析 生成器表达式 一. 名称空间与作用域 1.名称空间 存放名字的地方,准确的说名称空间是存放名字与变量值绑定关系的地方 ...

  7. 12小时制时间&&24小时制时间

    今天在获取时间的时候发现,插入到数据库中的时间,其中下午的时间直接显示01,02的样子...查了下资料发现了端倪, java.text.SimpleDateFormat f=new java.text ...

  8. vue项目中使用vue-awesome

    公司在项目重构时,遇到图标问题,然后把vue-awesome.iconfont.iconMoon都试了一遍,虽然最终使用了iconMoon但是也要把这两个过程记录一下. github地址 1.首先安装 ...

  9. 关于javascript的"+="连接符

    今天在读<javascript Dom 编程艺术>的时候,看到了自己感觉陌生的+=连接符(小白一枚,各位勿耻笑) "+="连接符,可以看成完成一次“加法和赋值”(或者“ ...

  10. 清理雪道(bzoj 2502)

    Description        滑雪场坐落在FJ省西北部的若干座山上. 从空中鸟瞰,滑雪场可以看作一个有向无环图,每条弧代表一个斜坡(即雪道),弧的方向代表斜坡下降的方向. 你的团队负责每周定时 ...