将cv :: Mat转换为openni :: VideoFrameRef

时间:2015-06-08 12:44:54

标签: c++ opencv kinect openni

我将kinect流数据转换为cv::Mat。我正在尝试使用OpenNI运行一些示例代码。

我能以某种方式将我的Mat转换为OpenNI格式图像吗?

我只需要深度图像,并且在与OpenNI长时间战斗之后,已经放弃了安装它。

我正在使用OpenCV 3,Visual Studio 2013,Kinect v2 for Windows。

相关代码是:

void CDifodoCamera::loadFrame()
{
    //Read the newest frame
    openni::VideoFrameRef framed; //I assume I need to replace this with my Mat...
    depth_ch.readFrame(&framed);

    const int height = framed.getHeight();
    const int width = framed.getWidth();

    //Store the depth values
    const openni::DepthPixel* pDepthRow = (const openni::DepthPixel*)framed.getData();
    int rowSize = framed.getStrideInBytes() / sizeof(openni::DepthPixel);

    for (int yc = height-1; yc >= 0; --yc)
    {
        const openni::DepthPixel* pDepth = pDepthRow;
        for (int xc = width-1; xc >= 0; --xc, ++pDepth)
        {
            if (*pDepth < 4500.f)
                depth_wf(yc,xc) = 0.001f*(*pDepth);

            else
                depth_wf(yc,xc) = 0.f;
        }

        pDepthRow += rowSize;
    }
}

1 个答案:

答案 0 :(得分:1)

首先,您需要了解数据的来源......如果它已经在cv::Mat中,您应该接收两个图像,一个用于RGB信息,通常是3通道uchar cv::Mat和深度信息的另一个图像,通常以16位表示以毫米为单位保存(你不能将浮动垫保存为图像,但你可以使用opencv作为yml / xml文件)。

假设您要阅读并处理包含深度信息的图像,您可以将代码更改为:

void CDifodoCamera::loadFrame()
{
    //Read the newest frame
    //the depth image should be png since it is the one which supports 16 bits and it must have the ANYDEPTH flag
    cv::Mat depth_im = cv::imread("img_name.png",CV_LOAD_IMAGE_ANYDEPTH); 

    const int height = depth_im.rows;
    const int width = depth_im.cols;

    for (int y = 0; y < height; y++)
    {
        for (int x = 0; x < width; x++)
        {
            if (depth_im<unsigned short>(y,x) < 4500)
                depth_wf(y,x) = 0.001f * (float)depth_im<unsigned short>(y,x);

            else
                depth_wf(y,x) = 0.f;
        }
    }
}

我希望这会对你有所帮助。如果您有任何疑问,请询问:)