├── .gitignore ├── CMakeLists.txt ├── README ├── align_exe.cxx ├── alignment.cxx ├── alignment.h ├── bbox.cxx ├── compare_correspondences.cxx ├── correspondence_procrustes.h ├── correspondence_procrustes.hpp ├── cropper.cxx ├── distance.cxx ├── sac_non_rigid.h ├── sac_non_rigid.hpp ├── save_correspondences.cxx ├── util.cxx ├── util.h └── visualize.cxx /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | tags 3 | archive/ 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/README -------------------------------------------------------------------------------- /align_exe.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/align_exe.cxx -------------------------------------------------------------------------------- /alignment.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/alignment.cxx -------------------------------------------------------------------------------- /alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/alignment.h -------------------------------------------------------------------------------- /bbox.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/bbox.cxx -------------------------------------------------------------------------------- /compare_correspondences.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/compare_correspondences.cxx -------------------------------------------------------------------------------- /correspondence_procrustes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/correspondence_procrustes.h -------------------------------------------------------------------------------- /correspondence_procrustes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/correspondence_procrustes.hpp -------------------------------------------------------------------------------- /cropper.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/cropper.cxx -------------------------------------------------------------------------------- /distance.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/distance.cxx -------------------------------------------------------------------------------- /sac_non_rigid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/sac_non_rigid.h -------------------------------------------------------------------------------- /sac_non_rigid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/sac_non_rigid.hpp -------------------------------------------------------------------------------- /save_correspondences.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/save_correspondences.cxx -------------------------------------------------------------------------------- /util.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/util.cxx -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/util.h -------------------------------------------------------------------------------- /visualize.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymiller/FeatureBasedAlignment/HEAD/visualize.cxx --------------------------------------------------------------------------------