// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2009 Gael Guennebaud // // Eigen is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 3 of the License, or (at your option) any later version. // // Alternatively, you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of // the License, or (at your option) any later version. // // Eigen is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the // GNU General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License and a copy of the GNU General Public License along with // Eigen. If not, see . #include "main.h" #include template void homogeneous(void) { /* this test covers the following files: Homogeneous.h */ typedef Matrix MatrixType; typedef Matrix VectorType; typedef Matrix HMatrixType; typedef Matrix HVectorType; typedef Matrix T1MatrixType; typedef Matrix T2MatrixType; typedef Matrix T3MatrixType; Scalar largeEps = test_precision(); if (internal::is_same::value) largeEps = 1e-3f; VectorType v0 = VectorType::Random(), v1 = VectorType::Random(), ones = VectorType::Ones(); HVectorType hv0 = HVectorType::Random(), hv1 = HVectorType::Random(); MatrixType m0 = MatrixType::Random(), m1 = MatrixType::Random(); HMatrixType hm0 = HMatrixType::Random(), hm1 = HMatrixType::Random(); hv0 << v0, 1; VERIFY_IS_APPROX(v0.homogeneous(), hv0); VERIFY_IS_APPROX(v0, hv0.hnormalized()); hm0 << m0, ones.transpose(); VERIFY_IS_APPROX(m0.colwise().homogeneous(), hm0); VERIFY_IS_APPROX(m0, hm0.colwise().hnormalized()); hm0.row(Size-1).setRandom(); for(int j=0; j Rt; Matrix pts, Rt_pts1; Rt.setIdentity(); pts.setRandom(Size,5); Rt_pts1 = Rt * pts.colwise().homogeneous(); // std::cerr << (Rt_pts1 - pts).sum() << "\n"; VERIFY_IS_MUCH_SMALLER_THAN( (Rt_pts1 - pts).sum(), Scalar(1)); } void test_geo_homogeneous() { for(int i = 0; i < g_repeat; i++) { CALL_SUBTEST_1(( homogeneous() )); CALL_SUBTEST_2(( homogeneous() )); CALL_SUBTEST_3(( homogeneous() )); } }