本文介绍了如何根据从Matlab获取的深度图像和彩色图像生成3D点云的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有2个从kinect获取的设置数据1-场景中尺寸为480 * 640(uint16)的深度图像来自同一场景的具有相同尺寸的2色图像(480 * 640 * 3单张)问题是如何在Matlab中将这些数据合并在一起以生成PLY格式的彩色3D点云.我需要说的是,很遗憾,我无法再使用kinect了,我应该只使用这些数据.

I have 2 set data acquired from kinect1- depth image with size 480*640 (uint16) from a scene2- color image with same size (480*640*3 single) from same sceneThe question is how can I merge these data together to generate a colored 3D point clouds with PLY format in Matlab.I need to say that unfortunately I don't have an access to kinect anymore and i should use only these data.

推荐答案

我从未尝试过在matlab中做到这一点,但是我认为这就是您想要的:

I've never tried to do that in matlab, but i think that this is what you are looking for:

http://es.mathworks.com/help/vision/ref/pcfromkinect.html

该工具位于Computer Vision System Toolbox™内部.

The tool is inside the Computer Vision System Toolbox™.

这篇关于如何根据从Matlab获取的深度图像和彩色图像生成3D点云的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-30 03:37