skip to Main Content

In meshlab, If I select a vertex and color it with red (per vertex color function), the result becomes

enter image description here

Red is too dispersed.

What I want is just : (image below was edited by photoshop):

enter image description here

How can I do it ?

2

Answers


  1. On triangular meshes, when the color is defined in a per-vertex way, the colors are linearly interpolated across each triangle, so the result is precisely the expected one.

    If you need just a way of looking at a few vertices, just enable the visualization of selected vertices and select them.

    On the other hand, if you just need to reduce the color’s spread, refine the mesh so that the underlying triangles are smaller, and the color is interpolated across a smaller area.

    Login or Signup to reply.
  2. You can get something quite similar to your desired behavior.

    1. The color dispersion is due to Gouraud shading. You can disable it clicking in the tab of face render options and change color button from "vertex" to "face" or "user defined"

    2. To render vertex as "balls with color"

    • Click on the tab of vertex and choose the option Dot Decorator (1)
    • Change the size of dots with the Point Size Bar (2)
    • Let the color buttons in "mesh", not "user defined"

    Dot decorator

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search