VS2010中 报错:error C2146、error C4430 原因一:缺少CvvImage类
今天用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类的更多相关文章
- 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 ...
- MFC项目中:报错:“fatal error LNK1561: 必须定义入口点”解决方法
编译的时候,报错:“fatal error LNK1561: 必须定义入口点” 解决方案1: 右键->属性->链接器->高级->入口点,设置成:WinMainCRTStartu ...
- http报错之return error code:401 unauthorized
http报错之return error code:401 unauthorized 依据HTTP返回码所表示的意思应该是未授权,没有输入账号和password,因此解决方法就直接在HTTP包里面 ...
- 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=/ ...
- 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] -------------------------------------------- ...
- 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 ...
- 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 ...
- VS经常报错的link error 2019
VS经常报错的link error 2019 原因如下: 可能是找得到头文件,但是相关的dll或者lib找不到,需要在配置里面添加相应的库文件. project=>configuration.. ...
- 解决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 ...
随机推荐
- IOS开发学习笔记036-UIScrollView-循环自动滚动
实现scrollView的自动循环滚动,需要实现几个方法. 其中scrollView中始终保存三张图片,其他的图片在滚动到时再进行加载. 循环的实现主要是在setUpdate 中,如果索引为0是第一个 ...
- 如何在win7下安装python包工具pip
1. 在安装pip前,请确认你win系统中已经安装好了python,和easy_install工具,如果系统安装成功,easy_install在目录C:\Python27\Scripts 下面, 确认 ...
- 二分法 Binary Search
二分法还是比较常见和简单的,之前也遇到过一些二分的相关题目,虽然不难,但是每次都需要在边界问题上诸多考虑,今天听了九章算法的课程,学习到一种方法使得边界问题简单化. 二分法的几个注意点: 1. mid ...
- 软工实践 - 第十次作业 Alpha 冲刺 (2 / 10)
队名:起床一起肝活队 组长博客:https://www.cnblogs.com/dawnduck/p/9960710.html 作业博客:班级博客本次作业的链接 组员情况 组员1(队长):白晨曦 过去 ...
- ssh-add Could not open a connection to your authentication agent.
ssh-add 报错Could not open a connection to your authentication agent. 需要执行以下代码 eval `ssh-agent -s` ssh ...
- [转]jQuery中attr() 和 val() 的区别
[转](http://www.codeproject.com/Tips/780652/Difference-between-attr-and-val-in-jQuery)
- POJ3683 Priest John's Busiest Day 【2-sat】
题目 John is the only priest in his town. September 1st is the John's busiest day in a year because th ...
- 基于kubuntu的C/C++开发环境搭建
基于kubuntu的环境搭建 系统: kubuntu 14.04 中文输入法: SICM ibus fcitx:sougou 中文输入法的安装比较复杂,由于各种的不兼容,可能会出现各种的问题: 终端配 ...
- 《插件》一个比较好用的 chrome浏览器的json格式化插件
插件名: JSON-Handle 下载地址: http://jsonhandle.sinaapp.com/ 插件下载后,在浏览器输入:chrome://extensions/ 将下 ...
- Master of Sequence
Master of Sequence 时间限制: 10 Sec 内存限制: 128 MB 题目描述 There are two sequences a1,a2,...,an , b1,b2,..., ...