Assignment #2:
Mesh Simplifier

Submission date: Friday, 10/15/21, 23:59

Objective:

Implement edge-collapses based mesh simplifiers. Experience the difference between understanding a geometry processing algorithm on a theoretical level and actually implementing it.

Tasks:

  1. Implement an edge collapse based simplifier - here you will need to write the edge collapse code yourself, as well as provide all the data-structures/visualization necessary to run and debug your method. Use the QSLIM metric discussed in class and the rest of the features necessary for a complete simplifier. An example of what your simplifier should do is here.

BONUS:

The size of the bonus will be at the discretion of the marker.

Instructions:

  1. Download the latest version of minimesh.
  2. Implement an edge-collapse based simplifier based on the QSLIM metric discussed in class. Your code should compute the new position/error metric per edge; use this value to order edges in a queue; collapse the top edge (if the collapse is valid, i.e.does not create illegal topology); and update the queue accordingly. You must disallow edge collapses if they create illegal topology. Based on a user input (provided via the simplifier window) it should simplify the mesh as instructed, by collapsing as many edges as specified, in an order determined by the metric.
  3. In the simplifier:
  4. You can make the following assumptions in your work:
  5. Your API should support the following mesh operations, performed repeatedly and in any order:
  6. To visualize the simplification process and ensure correctness, use the visualization tools provided in minimesh to visualize the top 10 edge candidates for collapse. You can call Mesh_buffer::set_XXX_colors() to color the mesh, where XXX can be faces or vertices. Make sure that the color is updated after the user specified number of simplification operations is finished and that the current top candidate edge is highlighted.
  7. Test for illegal operations (e.g. running simplification when no mesh is loaded) and issue an appropriate error message if one is performed.

Submission:

You can use your grace days (if you still have them). No late assignments, beyond those, will be accepted.

This assignment is 15% of your final grade.

Visualization:

First of all, make sure you download the latest version of minimesh. The "Mesh_buffer" class contains two function "set_face_colors" and "set_vertex_colors" which sets the colors of vertices or faces. Note that Mesh_buffer expects the colors to be in a continuous order. Therefore, if the mesh is fragmented the color of vertex i must be inside the defrag_map.old2new_vertices[i]th column of the matrix that you pass to "set_vertex_colors".