How to transfer pointcloud to mesh
3 次查看(过去 30 天)
显示 更早的评论
I have got an obj file of a year. I want to transfer it to mesh.The file has two variables v and f. I don't know how to use commands like delaunay,trisurf,meshgrid to make it into mesh. Help?Has nayone done something sililiar before?
0 个评论
回答(3 个)
Fangjun Jiang
2011-11-11
mesh is for 3-D data. If you only have v and f, I am not sure how do you want to present it in 3-D. However, if you have x, y and z data in a vector, this post might help you.
0 个评论
Patrick Kalita
2011-11-11
Perhaps v and f represent vertex and face information? If that is the case you can use the patch command. patch objects have the properties Vertices and Faces. Read the documentation to ensure you set these values using the right format; you may not be able to apply the variables v and f directly without some preprocessing.
4 个评论
Patrick Kalita
2011-11-15
If f is a 125731-by-3 array, it certainly has the right shape to describe how the faces are connected. Are all the values integers? They should be. You might want to also look at the minimum of the array to see if it is 0 -- if so you might need to add 1 to account for MATLAB's 1-based indexing.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!