本文介绍了如何将点从kinect转换为.obj文件格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从kinect获取了数千个点用于3D扫描仪。我可以在meshlab或blender中看到3D形状,但我想根据.obj文件格式转换所有点。

这里是.obj文件的示例;

#简单对象文件。这是评论
v -0.500000 0.000000 0.400000
v -0.500000 0.000000 -0.800000
v -0.500000 1.000000 -0.800000
v -0.500000 1.000000 0.400000
f -4 -3 -2 -1





我只有v点,但不知道如何将它们转换为f(面部)。如果没有f(脸部)我在界面上看不到真正的形状。

提前谢谢。如果问题不够明确,请发表评论。

解决方案

I have thousands points that I took from kinect for 3D scanner. I can see the 3D shape in meshlab or blender but I want to convert all points according to .obj file format.
here is an example of .obj file ;

# Simple object file . This is comment
v -0.500000 0.000000 0.400000
v -0.500000 0.000000 -0.800000
v -0.500000 1.000000 -0.800000
v -0.500000 1.000000 0.400000
f -4 -3 -2 -1



I just have v points but dont know how to convert them to f (face). If there is no f(face) I cannot see the real shape in interface.
Thanks in advance. If question is not clear enough please comment.

解决方案


这篇关于如何将点从kinect转换为.obj文件格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 05:32
查看更多