How to create mesh from coordinates
이전 댓글 표시
Hi,
I have a 3D object (as shown in figure) defined entirely by x,y,z coordinates. Below shows the plot using scatter3().

I do not have the triangulation information.
My ultimate goal is to convert it to an .*stl file. How do I mesh it? delaunay(x,y,z) is giving something like this which is not correct.

Do I need some kind of algorithm to mesh it ?
Or else can I convert the coordinates to a .ply file to use meshlab to mesh it ? I don't know how to convert. Since this is a closed figure meshgrid() etc. are not working.
Thank you for the help.
채택된 답변
추가 답변 (1개)
Walter Roberson
2016년 12월 28일
0 개 추천
댓글 수: 4
sumana
2016년 12월 28일
sumana
2016년 12월 28일
sumana
2016년 12월 28일
Walter Roberson
2016년 12월 28일
편집: Walter Roberson
2016년 12월 28일
pc = pointCloud( [x(:), y(:), z(:)] );
pcwrite(pc, 'OutputFileName.ply');
This requires the Computer Vision Toolbox.
카테고리
도움말 센터 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


