OpenCV (2.4.4) で 2 つの Asus Xtion Pro センサーを使用したいのですが、両方のデバイスを初期化する方法がわかりません。
次のように初期化できます。
VideoCapture capture;
capture.open(CV_CAP_OPENNI);
2 つの個別のセンサーに対して 2 つの VideoCapture インスタンスを初期化するにはどうすればよいですか?
OpenCV (2.4.4) で 2 つの Asus Xtion Pro センサーを使用したいのですが、両方のデバイスを初期化する方法がわかりません。
次のように初期化できます。
VideoCapture capture;
capture.open(CV_CAP_OPENNI);
2 つの個別のセンサーに対して 2 つの VideoCapture インスタンスを初期化するにはどうすればよいですか?
次のように簡単です。
VideoCapture sensor1;sensor1.open(CV_CAP_OPENNI_ASUS);
VideoCapture sensor2;sensor2.open(CV_CAP_OPENNI_ASUS+1);
非常に基本的な実行可能な例は次のとおりです。
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
using namespace cv;
using namespace std;
int main(){
cout << "opening device(s)" << endl;
VideoCapture sensor1;sensor1.open(CV_CAP_OPENNI_ASUS);
VideoCapture sensor2;sensor2.open(CV_CAP_OPENNI_ASUS+1);
if( !sensor1.isOpened() ){
cout << "Can not open capture object 1." << endl;
return -1;
}
for(;;){
Mat depth1,depth2;
if( !sensor1.grab() ){
cout << "Sensor1 can not grab images." << endl;
return -1;
}else if( sensor1.retrieve( depth1, CV_CAP_OPENNI_DEPTH_MAP ) ) imshow("depth1",depth1);
if( !sensor2.grab() ){
cout << "Sensor2 can not grab images." << endl;
return -1;
}else if( sensor2.retrieve( depth2, CV_CAP_OPENNI_DEPTH_MAP ) ) imshow("depth2",depth2);
if( waitKey( 30 ) == 27 ) break;
}
}