実際に ASUS Xtion から RGB 画像を取得できますが、Depth 画像を取得できません。代わりに黒い画像が表示され、エラーは表示されません。
OpenNI で提供されているサンプルの SimpleView は機能するので、センサーやライブラリではなく、OpenCV が正しく機能していると思います。
何か案が?
これが私のコードです:
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
using namespace cv;
using namespace std;
int main( int argc, char* argv[] )
{
cout << "Device opening ..." << endl;
VideoCapture captureStream;
captureStream.open(CV_CAP_OPENNI_ASUS);
if( !captureStream.isOpened() ){
cout << "Can not open capture object." << endl;
return -1;
}
for(;;){
Mat depth;
if( !captureStream.grab() ){
cout << "ASUS Xtion can not grab images." << endl;
return -1;
}else
if( captureStream.retrieve( depth, CV_CAP_OPENNI_DEPTH_MAP) )
imshow("depth",depth);
if( waitKey( 30 ) == 27 ) break;
}
return 0;
}
ありがとうございました!