jmespadero

Results 19 comments of jmespadero

Thanks for bringing here that comparative, Kornel. I have been testing for a week with a large corpus of images, and my conclusions are similar. In my opinion, the better...

True. Receive one more time my congratulations for the set of optimizations and enhancements you have done recently.

This problem is also avoided enabling the "Preserve Normal" flag, Which by the way, never hurts to enable. Probably should be enabled by default. The problem is produced by that...

Maybe the problem is at this potential division-by-zero in [Quadric::Minimum()](https://github.com/cnr-isti-vclab/vcglib/blob/001a01b38688acbf81f0ec821e9bde3e6d4622ab/vcg/math/quadric.h#L198) ```cpp double relative_error = (A*xe - be).norm() / be.norm(); if(relative_error> Quadric::RelativeErrorThr() ) return false; ``` What happen if be.norm() is...

This is based on QSLIM algorithm, written by Michael Garland. He publish all his papers at http://mgarland.org/papers/ Relevant ones are from years 1997 to 1999 * M. Garland and P....

First, I must remember that this implementation is done with didactic purposes. If you really need to use 3D triangulation (a better name is 3D tetrahedralization), consider using [scipy.spatial.Delaunay](https://docs.scipy.org/doc/scipy/reference/generated/scipy.spatial.Delaunay.html). If...

I will let to others to judge if it easy or not to implement the multidimensional version of Bowyer-Watson algorithm because that depends of your experience in programming geometry algorithms...

I suspect that "close_holes" select the new created faces, and "apply_coord_laplacian_smoothing" is working only on that set of faces.

To use tolerance in the distances, you can use the filter "Merge close vertices" instead of "Remove duplicates"

That's VTK's XML file format. This mean that it is easier to parse it and convert to a supported file format (like ply or obj) than implement the import I...