我正在使用OpenCV框架进行图像处理,我正在识别照片中的边缘 正常的iOS项目,现在我在cocos2d项目中转换此代码,我已经导入了所有 必需的标题,但在编译时我收到此错误:在'cv'之前的期望说明符限定符列表。这是我的代码
#import "cocos2d.h"
#import "CameraController.h"
#import "Globals.h"
@interface BotoxEffectController : CCLayer
{ cv::VideoCapture *_videoCapture; cv::Mat _lastFrame;}//this is line where i am
getting error
@property (nonatomic, retain) CCSprite *sprite2D;
+(CCScene *) scene;
@end
here is code in .pch file.
#import <Availability.h>
#ifndef __IPHONE_3_0
#warning "This project uses features only available in iPhone SDK 3.0 and later."
#endif
#ifdef __cplusplus
#import <OpenCV/opencv2/opencv.hpp>
#endif
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif
请参考下面的屏幕截图BotoxEffectController类接口,其中错误是&amp;实现文件有扩展名.mm。
这里是我导入opencv.hpp的.pch文件
答案 0 :(得分:0)
我想我知道这里发生了什么。尝试将OpenCV标头添加到BotoxEffectController头文件中:
#import <OpenCV/opencv2/opencv.hpp>
如果这样可以修复编译错误,则问题在于prefix.pch。由于某种原因,它不解析#if __cplusplus
部分。您可以通过向其添加警告来验证它,看看它是否触发:
#ifdef __cplusplus
#warning "ok so it DID import the OpenCV header"
#import <OpenCV/opencv2/opencv.hpp>
#endif
如果这是问题,我无法告诉您为什么prefix.pch中的opencv标头不起作用。我只记得曾经有过一次或两次这个问题,但不记得我是如何解决这个问题的。你应该检查一件事:BotoxEffectController.h应该将其文件类型设置为&#34;默认 - C标题&#34;而不是C ++标题。