gpt4 book ai didi

opencv - 当我们在 OpenCV 中有深度和 rgb 垫时如何显示 3D 图像(从 Kinect 捕获)

转载 作者:太空宇宙 更新时间:2023-11-03 20:51:00 25 4
gpt4 key购买 nike

我们使用带有 OpenNI 库的 Kinect 捕获了 3d 图像,并使用此代码以 OpenCV Mat 的形式获得了 rgb 和深度图像。

    main()
{
OpenNI::initialize();
puts( "Kinect initialization..." );
Device device;
if ( device.open( openni::ANY_DEVICE ) != 0 )
{
puts( "Kinect not found !" );
return -1;
}
puts( "Kinect opened" );
VideoStream depth, color;
color.create( device, SENSOR_COLOR );
color.start();
puts( "Camera ok" );
depth.create( device, SENSOR_DEPTH );
depth.start();
puts( "Depth sensor ok" );
VideoMode paramvideo;
paramvideo.setResolution( 640, 480 );
paramvideo.setFps( 30 );
paramvideo.setPixelFormat( PIXEL_FORMAT_DEPTH_100_UM );
depth.setVideoMode( paramvideo );
paramvideo.setPixelFormat( PIXEL_FORMAT_RGB888 );
color.setVideoMode( paramvideo );
puts( "Réglages des flux vidéos ok" );

// If the depth/color synchronisation is not necessary, start is faster :
//device.setDepthColorSyncEnabled( false );

// Otherwise, the streams can be synchronized with a reception in the order of our choice :
device.setDepthColorSyncEnabled( true );
device.setImageRegistrationMode( openni::IMAGE_REGISTRATION_DEPTH_TO_COLOR );

VideoStream** stream = new VideoStream*[2];
stream[0] = &depth;
stream[1] = &color;
puts( "Kinect initialization completed" );


if ( device.getSensorInfo( SENSOR_DEPTH ) != NULL )
{
VideoFrameRef depthFrame, colorFrame;
cv::Mat colorcv( cv::Size( 640, 480 ), CV_8UC3, NULL );
cv::Mat depthcv( cv::Size( 640, 480 ), CV_16UC1, NULL );
cv::namedWindow( "RGB", CV_WINDOW_AUTOSIZE );
cv::namedWindow( "Depth", CV_WINDOW_AUTOSIZE );

int changedIndex;
while( device.isValid() )
{
OpenNI::waitForAnyStream( stream, 2, &changedIndex );
switch ( changedIndex )
{
case 0:
depth.readFrame( &depthFrame );

if ( depthFrame.isValid() )
{
depthcv.data = (uchar*) depthFrame.getData();
cv::imshow( "Depth", depthcv );
}
break;

case 1:
color.readFrame( &colorFrame );

if ( colorFrame.isValid() )
{
colorcv.data = (uchar*) colorFrame.getData();
cv::cvtColor( colorcv, colorcv, CV_BGR2RGB );
cv::imshow( "RGB", colorcv );
}
break;

default:
puts( "Error retrieving a stream" );
}
cv::waitKey( 1 );
}

cv::destroyWindow( "RGB" );
cv::destroyWindow( "Depth" );
}
depth.stop();
depth.destroy();
color.stop();
color.destroy();
device.close();
OpenNI::shutdown();
}

我们在上面添加了一些代码并从中获取了 RGB 和深度垫,然后我们使用 OpenCV 处理了 RGB。

现在我们需要以 3D 形式显示该图像。

我们正在使用:-

1) Windows 8 x64

2) Visual Studio 2012 x64

3) OpenCV 2.4.10

4) OpenNI 2.2.0.33

5) 体感1

6) 体感SDK 1.8.0

问题:-

1) 我们可以使用 OpenCV 直接显示此图像还是需要任何外部库??

2) 如果我们需要使用外部库,对于这个简单的任务,OpenGL、PCL 或任何其他库哪个更好??

3) PCL 是否支持 Visual Studio 12 和 OpenNI2,由于 PCL 与其他版本的 OpenNI 一起打包,这两个版本是否冲突?

最佳答案

为了完善南极人的回答,要以 3D 形式显示图像,您需要先创建点云...RGB 和深度图像为您提供创建有组织的彩色点云所需的数据。为此,您需要计算每个点的 x、y、z 值。 z值来自深度像素,但x和y必须计算。

要做到这一点,你可以这样做:

void Viewer::get_pcl(cv::Mat& color_mat, cv::Mat& depth_mat, pcl::PointCloud<pcl::PointXYZRGBA>& cloud ){
float x,y,z;

for (int j = 0; j< depth_mat.rows; j ++){
for(int i = 0; i < depth_mat.cols; i++){
// the RGB data is created
PCD_BGRA pcd_BGRA;
pcd_BGRA.B = color_mat.at<cv::Vec3b>(j,i)[0];
pcd_BGRA.R = color_mat.at<cv::Vec3b>(j,i)[2];
pcd_BGRA.G = color_mat.at<cv::Vec3b>(j,i)[1];
pcd_BGRA.A = 0;

pcl::PointXYZRGBA vertex;
int depth_value = (int) depth_mat.at<unsigned short>(j,i);
// find the world coordinates
openni::CoordinateConverter::convertDepthToWorld(depth, i, j, (openni::DepthPixel) depth_mat.at<unsigned short>(j,i), &x, &y,&z );

// the point is created with depth and color data
if ( limitx_min <= i && limitx_max >=i && limity_min <= j && limity_max >= j && depth_value != 0 && depth_value <= limitz_max && depth_value >= limitz_min){
vertex.x = (float) x;
vertex.y = (float) y;
vertex.z = (float) depth_value;
} else {
// if the data is outside the boundaries
vertex.x = bad_point;
vertex.y = bad_point;
vertex.z = bad_point;
}
vertex.rgb = pcd_BGRA.RGB_float;

// the point is pushed back in the cloud
cloud.points.push_back( vertex );
}
}
}

PCD_BGRA 是

union PCD_BGRA
{
struct
{
uchar B; // LSB
uchar G; // ---
uchar R; // MSB
uchar A; //
};
float RGB_float;
uint RGB_uint;
};

当然,这是针对你想使用PCL的情况,但或多或​​少是对x,y,z值的计算而已。这依赖于 openni::CoordinateConverter::convertDepthToWorld 来查找点在 3D 中的位置。您也可以手动执行此操作

 const float invfocalLength = 1.f / 525.f;
const float centerX = 319.5f;
const float centerY = 239.5f;
const float factor = 1.f / 1000.f;

float dist = factor * (float)(*depthdata);
p.x = (x-centerX) * dist * invfocalLength;
p.y = (y-centerY) * dist * invfocalLength;
p.z = dist;

其中 centerX、centerY 和 focallength 是相机的固有校准(这是针对 Kinect 的)。以及如果您需要以米或毫米为单位的距离...这个值取决于您的程序

对于问题:

  1. 是的,您可以使用最新的 OpenCV 和 viz class 显示它或与适合您需要的其他外部库一起使用。
  2. OpenGl 很好,但是如果您不知道如何使用它们(我的意思是显示点云),PCL(或 OpenCV)会更容易使用
  3. 我没有在windows上使用它,但理论上它可以在visual studio 2012上使用。据我所知,PCL附带的版本是OpenNI 1,它不会影响OpenNI2 ...

关于opencv - 当我们在 OpenCV 中有深度和 rgb 垫时如何显示 3D 图像(从 Kinect 捕获),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29270544/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com