MichaelRabinovich / Scalable-Locally-Injective-Mappings

Implementation of 2D-parametrization algorithm introduced by the paper "Scalable Locally Injective Mappings". Currently support only the Symmetric Dirichlet isometric energy.
GNU General Public License v3.0
84 stars 17 forks source link

Increase number of iterations ? #3

Open ChameleonScales opened 7 years ago

ChameleonScales commented 7 years ago

Can we input an argument in the command to change the number of iterations ?

MichaelRabinovich commented 7 years ago

It's actually hardcoded at main.cpp under ITER_NUM. There is a nicer to use implementation in libigl, where this parameter and with more options (for instance different energies). For the libigl implementation, see example 611 in this tutorial: http://libigl.github.io/libigl/tutorial/tutorial.html

The biggest advantage of this implementation is the use of the Pardiso solver.

MichaelRabinovich commented 7 years ago

And please keep me updated :) If you have an example where a result of a parameterization after 50 iterations or more is significantly better than 20, I'm also curious to see that.