how can I generate a 3d surface object from 3d vertex extracted from a blender .ply?

조회 수: 2 (최근 30일)
I'm looking for a way to get the 3d vertex information extracted from a blender .ply file and generate a 3d closed surface object. I tried the following code:
%Load .ply file
ptCloud = pcread('monkey.ply');
%Acess the 3D vertex coordinates
coordinates=ptCloud.Location; x=double(coordinates(:,1)); y=double(coordinates(:,2)); z=double(coordinates(:,3));
%Generate a delaunay triangulation from 3d vertex coordinates
DT = delaunayTriangulation(x,y,z);
[T,Xb] = freeBoundary(DT); TR = triangulation(T,Xb);
P = incenter(TR); F = faceNormal(TR);
trisurf(T,Xb(:,1),Xb(:,2),Xb(:,3), ... 'FaceColor','cyan','faceAlpha',0.8); axis equal hold on quiver3(P(:,1),P(:,2),P(:,3), ... F(:,1),F(:,2),F(:,3),0.5,'color','r');
The result related to the above code is represented by the attached figure (a), but the desired result would be (b).

답변 (1개)

Cris LaPierre
Cris LaPierre 2020년 3월 20일
Does it have to be a ply file? If you can export it as an stl file, the following code might meet your needs.
mnky = stlread("monkey.stl");
trimesh(mnky,'facecolor', 'b','edgecolor','b')

카테고리

Help CenterFile Exchange에서 Delaunay Triangulation에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by