いくつかの opencv カメラのラッパーを作成しようとしていますが、エラーが発生します: ‘VideoCapture’ in namespace ‘cv’ does not name a type
. ヘッダーファイルで正しく宣言していないためだと思いcv::VideoCapture left
ますか?cv::VideoCapture right
ステレオ.h:
#ifndef _GUARD_STEREO_GUARD_
#define _GUARD_STEREO_GUARD_
#include "cv.h"
class Stereo {
public:
Stereo(int, int);
cv::Mat getLeft();
cv::Mat getRight();
private:
cv::VideoCapture left;
cv::VideoCapture right;
};
#endif
ステレオ.cpp:
#include "cv.h"
#include <iostream>
#include "stereo.h"
using namespace cv;
Stereo::Stereo(int leftId, int rightId) {
left = VideoCapture(leftId);
right = VideoCapture(rightId);
if (!left.opened() || !right.opened()) {
std::cerr << "Could not open camera!" << std::endl;
}
}
Mat Stereo::getLeft() {
Mat frame;
left >> frame;
return frame;
}
Mat Stereo::getRight() {
Mat frame;
right >> frame;
return frame;
}
ただし、次を正常に使用できますVideoCapture like this
。
cv::VideoCapture capLeft; // open the Left camera
cv::VideoCapture capRight; // open the Right camera
capLeft = cv::VideoCapture(0);
capRight = cv::VideoCapture(1);