0

実際に 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;
}

ありがとうございました!

4

1 に答える 1

1

OpenCV サンプル コードでは、実際にこのコードを使用して、深度マップを取得して表示します。

Mat depth;
capture.retrieve( depth, CV_CAP_OPENNI_DEPTH_MAP )
const float scaleFactor = 0.05f;
Mat show; 
depth.convertTo( show, CV_8UC1, scaleFactor );
imshow( "depth map", show );
于 2013-11-07T15:07:11.633 に答える