How to create triangulated surface using data points (x,y,z)

51 views (last 30 days)
I have set of points in 3D (x,y,z) in Cartesian coordinates.
I would like create surface mesh (in terms of finite element modeling) of these points.
I tried using DelaunayTri, but that gives me tetrahedral and not triangles, which I want.
Thanks Prab
  1 Comment
inderjeet
inderjeet on 24 Nov 2016
Hello Prabh, I have the same problem. If you had solution. Can you please discuss?

Sign in to comment.

Answers (3)

Jan
Jan on 18 Mar 2013

Titus Edelhofer
Titus Edelhofer on 18 Mar 2013
Hi Prab,
I think you are looking for the convex hull? So take a look at convhulln or convexHull (depending on your MATLAB version).
Titus
  1 Comment
Prabhjot
Prabhjot on 18 Mar 2013
Hi Titus,
I dont want to use the convex hull because I loose lot of geometricl information in building convex hull.
My data is points that define a breast and the shape is important for my work.
Thanks
Prab

Sign in to comment.


Titus Edelhofer
Titus Edelhofer on 18 Mar 2013
Hi Prab,
O.K., I understand. Can you use two coordinates only? E.g. x and y only, build the (2D) triangulation and then plot/analyze the triangles in 3D? If this is not directly possible, you might have the chance to rotate all points by a rotation matrix and then use 2D triangulation.
Titus
  1 Comment
Prabhjot
Prabhjot on 18 Mar 2013
Hi Titus,
I am not sure how will I get the 3D triangulated surface from these. however, from the above post by Jan Simon 7, its seems I can use the existing programs from Fileexchange and solve my current problem.
Thank you
Prab

Sign in to comment.

Products

Community Treasure Hunt

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

Start Hunting!