00001 /* 00002 * Software License Agreement (BSD License) 00003 * 00004 * Copyright (c) 2010, Willow Garage, Inc. 00005 * All rights reserved. 00006 * 00007 * Redistribution and use in source and binary forms, with or without 00008 * modification, are permitted provided that the following conditions 00009 * are met: 00010 * 00011 * * Redistributions of source code must retain the above copyright 00012 * notice, this list of conditions and the following disclaimer. 00013 * * Redistributions in binary form must reproduce the above 00014 * copyright notice, this list of conditions and the following 00015 * disclaimer in the documentation and/or other materials provided 00016 * with the distribution. 00017 * * Neither the name of Willow Garage, Inc. nor the names of its 00018 * contributors may be used to endorse or promote products derived 00019 * from this software without specific prior written permission. 00020 * 00021 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00022 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00023 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00024 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00025 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00026 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00027 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00028 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00029 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00030 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00031 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00032 * POSSIBILITY OF SUCH DAMAGE. 00033 * 00034 * 00035 */ 00038 #include <pcl/pcl_macros.h> 00039 #include <iostream> 00040 #include <sstream> 00041 #include <gtest/gtest.h> 00042 #include <pcl/common/vector_average.h> 00043 using namespace pcl; 00044 00046 TEST (PCL, VectorAverage_mean) 00047 { 00048 std::vector<Eigen::Vector3f> points; 00049 std::vector<Eigen::Vector3f::Scalar> weights; 00050 points.push_back (Eigen::Vector3f (-0.558191f, 0.180822f, -0.809769f)); 00051 weights.push_back (0.160842f); 00052 points.push_back (Eigen::Vector3f (-0.510641f, 0.290673f, -0.809169f)); 00053 weights.push_back (0.526732f); 00054 points.push_back (Eigen::Vector3f (-0.440713f, 0.385624f, -0.810597f)); 00055 weights.push_back (0.312427f); 00056 00057 Eigen::Vector3f correct_mean (0.0f, 0.0f, 0.0f); 00058 float weigth_sum = 0.0f; 00059 for (unsigned int i = 0; i < points.size (); ++i) 00060 { 00061 correct_mean += weights[i]*points[i]; 00062 weigth_sum += weights[i]; 00063 } 00064 correct_mean /= weigth_sum; 00065 00066 pcl::VectorAverage<float, 3> va; 00067 for (unsigned int i=0; i<points.size(); ++i) 00068 va.add(points[i], weights[i]); 00069 Eigen::Vector3f mean = va.getMean(); 00070 //std::cout << "Correct: "<<correct_mean <<"\n"<< "Result: "<<mean<<"\n"; 00071 EXPECT_NEAR ((mean-correct_mean).norm(), 0.0f, 1e-4); 00072 } 00073 00074 /* ---[ */ 00075 int 00076 main (int argc, char** argv) 00077 { 00078 testing::InitGoogleTest (&argc, argv); 00079 return (RUN_ALL_TESTS ()); 00080 } 00081 /* ]--- */