gadomski / cpd

C++ implementation of the Coherent Point Drift point set registration algorithm.
http://www.gadom.ski/cpd
GNU General Public License v2.0
385 stars 122 forks source link

Nonrigid correspondence and normalize flag #141

Open JotaBravo opened 4 years ago

JotaBravo commented 4 years ago

When using the nonrigid transformation the correspondence vector return all zeros, even if it is being correctly computed inside the loop.

This is somehow solved by setting the normalize flag to false:

cpd::Nonrigid nonrigid;
nonrigid.normalize(false);