aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Geometry/Umeyama.h
Commit message (Collapse)AuthorAge
* Fix typo in Umeyama method documentationGravatar Michael Grupp2019-07-17
|
* bug #774: re-added comment referencing equations in the original paperGravatar Hauke Heibel2016-02-11
|
* bug #774: fix a numerical issue producing unwanted reflections.Gravatar Gael Guennebaud2016-02-11
|
* Remove deprecated usage of expr::Index.Gravatar Gael Guennebaud2015-02-16
|
* Fix bug #807: Missing scalar type cast in umeyama()Gravatar Christoph Hertzberg2014-05-05
|
* Removed scaling from the umeyama when it is not requested.Gravatar Hauke Heibel2012-09-25
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* Get rid of include directives inside namespace blocks (bug #339).Gravatar Jitse Niesen2012-04-15
|
* Initial fixes for bug #85.Gravatar Hauke Heibel2010-10-25
| | | | | | | Renamed meta_{true|false} to {true|false}_type, meta_if to conditional, is_same_type to is_same, un{ref|pointer|const} to remove_{reference|pointer|const} and makeconst to add_const. Changed boolean type 'ret' member to 'value'. Changed 'ret' members refering to types to 'type'. Adapted all code occurences.
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* remove SVD class (was bad code taked from elsewhere)Gravatar Benoit Jacob2010-10-12
| | | | | Use JacobiSVD for now. We do plan to reintroduce a bidiagonalizing SVD asap.
* rename:Gravatar Benoit Jacob2010-06-14
| | | | | | EIGEN_SIZE_MIN ---> EIGEN_SIZE_MIN_PREFER_DYNAMIC EIGEN_MAXSIZE_MIN ---> EIGEN_SIZE_MIN_PREFER_FIXED and make sure to use the latter in products xprs to determine the inner size.
* change the value of Dynamic to -1, since the index type is now configurable.Gravatar Benoit Jacob2010-06-11
| | | | remove EIGEN_ENUM_MIN/MAX, implement new macros instead
* the Index types change.Gravatar Benoit Jacob2010-05-30
| | | | As discussed on the list (too long to explain here).
* * implement the corner() API change: new methods topLeftCorner() etcGravatar Benoit Jacob2010-04-22
| | | | | | | | * get rid of BlockReturnType: it was not needed, and code was not always using it consistently anyway * add topRows(), leftCols(), bottomRows(), rightCols() * add corners unit-test covering all of that * adapt docs, expand "porting from eigen 2 to 3" * adapt Eigen2Support
* EIGEN_ENUM_MIN ---> EIGEN_SIZE_MINGravatar Benoit Jacob2010-01-27
|
* Big renaming:Gravatar Benoit Jacob2010-01-04
| | | | | | start ---> head end ---> tail Much frustration with sed syntax. Need to learn perl some day.
* Umeyama is now working with fixed size src and dst points.Gravatar Hauke Heibel2009-10-27
|
* demeaning with colwise expressionGravatar Hauke Heibel2009-10-22
|
* Fixed a cast warning in scaleAndAddTo.Gravatar Hauke Heibel2009-08-31
| | | | | Fixed lazyness in umeyama. Added a few missing casts.
* fix a couple of compilations issuesGravatar Gael Guennebaud2009-08-06
|
* more product refactoringGravatar Gael Guennebaud2009-08-06
|
* fix vs.net compilation issueGravatar Hauke Heibel2009-08-06
|
* make Umeyama, and its unit-test, work for me on gcc 4.3Gravatar Benoit Jacob2009-05-27
|
* * Umeyama has now similar performance for RowMajor and ColMajor layouts.Gravatar Hauke Heibel2009-05-27
| | | | | | * Fixed a bug in umeyama for fixed size matrices. * Fixed the umeyama unit test for fixed size matrices. * Added XprHelper::ei_plain_matrix_type_row_major.
* Added Umeyama implementation.Gravatar Hauke Heibel2009-05-26