Questions tagged [meshlab]

MeshLab is an open source program for editing 3D triangle mesh files in various formats. It is used in 3D scanning and virtual reality applications.

MeshLab is a open source desktop program for editing 3-D triangle mesh files in various formats used in 3-D scanning and virtual reality. It was originally developed as a didactical experiment at the University of Pisa and is actively maintained at the Visual Computing Lab of the Italian National Research Council.

Windows, Linux, and Mac OS X versions are available at the MeshLab official site.

Its capabilities include importing and exporting 3-D triangular mesh files in various formats, mesh visualization, and mesh editing functions such as cleaning, painting, remeshing, selecting and deleting parts of the mesh, and colorization.

467 questions
1
vote
1 answer

Delete non manifold vertices

I have a mesh (.obj) with the following Topological Measures via MeshLab: V: 13602 E: 38706 F: 25126 Unreferenced Vertices 0 Boundary Edges 2034 Mesh is composed by 101 connected component(s) Mesh has 11 non two manifold vertices and 117 faces…
arkriger
  • 207
  • 2
  • 7
1
vote
0 answers

How to trim or orient the extra data Meshlab creates around a point cloud

I'm creating a point cloud by 3d scanning an arched guitar back, and am converting it in MeshLab to .stl to import into VCarve CAD. The first time I used a .25" grid which turned out to be too coarse, but otherwise the .stl file worked well. The…
1
vote
0 answers

Saving after COMPUTE CURVATURE analysis result as texture?

i am using the filter to compute curvature principal directions on an imported obj file (Meshlab 2022.02). Everything runs well. But is there is an option to safe the results of the curvature analysis as a texture. So that I can export it again as…
Nick1982
  • 23
  • 4
1
vote
1 answer

Is it possible to change the default file format in MeshLab from ply to stl?

Whenever I repair then save a model in MeshLab, it wants to save it in ply format. I ALWAYS want to save it as stl and it is tiresome to have to constantly change the format. Anyway of setting to default to stl? I haven't figured out how to try…
1
vote
0 answers

How to compare the vertices of two triangles in a meshed object in a 3d space

I have vertices of two triangles in a 3d meshed object of coordinates represented as a,b,c in a 3d space. These are drawn in Auto Cad and saved down as meshes. I want to compare the both the table to find a similarity score. Triangle…
1
vote
0 answers

normal estimation of mesh open3d c++

I have a problem when re-computing my surface normals of a mesh in open3d. The problem is that the estimation is not good enough and I don't know how to make it better. From the image below it cannot be seen that the mesh has a hole in the middle of…
mikkelsen1996
  • 95
  • 1
  • 7
1
vote
0 answers

Is it possible to script the MeshLab align function with point based gluing?

I need to make the ability to combine three meshes / point clouds easy to do in a graphical user interface. In MeshLab the "Align" function works perfectly using "Point Based Gluing" for combining the three meshes. But I can't find any script for…
Sam
  • 11
  • 1
1
vote
1 answer

Meshlab: mesh semplification with fixed patch size

All, I'm using meshlab to simplify the overall mesh of a given .STL model. Usually I make use of the embedded QECD algorithm. Nonetheless I'm not able to reduce the mesh imposing an upper-bound limit for faces dimension, that shouldn't exceed a…
1
vote
0 answers

2022.02 won't load 2D meshes, .ply format

I have some 2D triangle meshes in .ply format that both Blender and MS 3D Paint will open. But Meshlab (2022.02) will not. It gives the error message "No vertex field found". I would guess that means it wants 3D meshes only. Or could it be…
Thomas Sharpless
  • 949
  • 1
  • 8
  • 14
1
vote
1 answer

Blender add-on "3D Print Toolbox" and MeshLab

Blender software has a nice mesh analysis add-on called ”3D Print Toolbox". It is making us give it a second look for our 3D printing workflow. On the other hand, MeshLab is very nice to have mesh repair tools. I see the errors in the Blender, and…
1
vote
1 answer

Quality Histogram - Cannot start Decorator

I have a stl and an obj File of an object. And I want to use the "Compute curvature principal directions". That works also fine. But I need a scale of the colores. And I found a post to use the "Show Face Quality Histogram". But then I get the…
Nick1982
  • 23
  • 4
1
vote
1 answer

use Poisson disk sampling in the Meshlab to sample the points from the meshes

I try to use Poisson disk sampling in the Meshlab to sample the points from the meshes.I need to get 8192 points from mesh,but i do not konw how to select parameters.As the figure show,when i set Number of samples to 8192,the points obtained are…
shenbin
  • 11
  • 2
1
vote
1 answer

Scale along normals

I'm trying to 'inflate' a mesh. I see that basically what I'm looking for is performed in Blender by scaling everything along the normals. Would there be a way to do this precisely (setting a precise percentage) in MeshLab?
Eli
  • 11
  • 2
1
vote
1 answer

Is Meshlab affected by the Log4j vulnerability

My employer wants to know if MeshLab is affected by the Log4j vulnerability. Could someone help me out? Does Meshlab use Log4J at all? PS. I really know nothing about programming so "for dummies" answers only, please. Thx
barnerra
  • 11
  • 1
1
vote
1 answer

Edge data from generated polyline in Meshlab

I am generating polylines in Meshlab through the 'Compute Planar Section' filter, with code as seen here. for z_value in np.arange(0, 5, 1): ms.set_current_mesh(0) planeoffset = float(z_value) ms.compute_planar_section(planeaxis = 'Z…