本文介绍了,无法打开源文件“cv.h”和“highgui.h”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#pragma once zh-b $ b #include< string>

#include< cv.h>

#include< ; highgui.h>



使用命名空间std;

使用命名空间cv;



class对象

{

public:

对象( ); $
~Object(void);



对象(字符串名称);
$


int getXPos();

void setXPos(int x);



int getYPos();

void setYPos(int y);
$


标量getHSVmin();

标量getHSVmax();
$


void setHSVmin(Scalar min);

void setHSVmax(标量最大值);



字符串getType (){返回类型; }
void setType(string t){type = t; }


标量getColor(){

返回颜色;

}

void setColor(标量c){



颜色= c;

}



private:



int xPos,yPos;

字符串类型;

标量HSVmin,HSVmax;

标量颜色;

};




我看到正确的opencv示例cpp示例。


但是当我制作时头文件(↑this), ,E1696:无法打开源文件< cv.h> &安培; < highgui.h>


我该如何解决?


plz help


解决方案


#pragma once
#include <string>
#include <cv.h>
#include <highgui.h>

using namespace std;
using namespace cv;

class Object
{
public:
Object();
~Object(void);

Object(string name);

int getXPos();
void setXPos(int x);

int getYPos();
void setYPos(int y);

Scalar getHSVmin();
Scalar getHSVmax();

void setHSVmin(Scalar min);
void setHSVmax(Scalar max);

string getType() { return type; }
void setType(string t) { type = t; }

Scalar getColor() {
return Color;
}
void setColor(Scalar c) {

Color = c;
}

private:

int xPos, yPos;
string type;
Scalar HSVmin, HSVmax;
Scalar Color;
};

i download and executed OPEN CV v. 4.0.1 . 

I saw correctly opencv sample cpp example.

but when i make header file (↑ this) , , E1696: Cannot open source file <cv.h> & <highgui.h>

how can i fix it?

plz help

解决方案


这篇关于,无法打开源文件“cv.h”和“highgui.h”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 07:47