How to create mesh from coordinates
    13 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    sumana
 am 27 Dez. 2016
  
    
    
    
    
    Kommentiert: Viraj Gandhi
 am 26 Feb. 2021
            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.
0 Kommentare
Akzeptierte Antwort
  Kaustubh Tiwarekar
 am 21 Apr. 2020
        I know its late. Bu8t this question needs a better answe.
Try referin to this link
1 Kommentar
Weitere Antworten (1)
  Walter Roberson
      
      
 am 28 Dez. 2016
        4 Kommentare
  Walter Roberson
      
      
 am 28 Dez. 2016
				
      Bearbeitet: Walter Roberson
      
      
 am 28 Dez. 2016
  
			pc = pointCloud( [x(:), y(:), z(:)] );
pcwrite(pc, 'OutputFileName.ply');
This requires the Computer Vision Toolbox.
Siehe auch
Kategorien
				Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!






