BBMediumShort.hpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package
19  * @author
20  * @date
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 #pragma once
25 
26 #include <math.h>
27 
28 #include <limits>
29 #include <vector>
30 
31 #include "BBFeature.hpp"
32 
34 {
35 public:
37  {
38  }
39 
40  BBMediumShortRatio(const std::vector<Eigen::Vector3f>& points) : BBFeature(points)
41  {
42  m_name = "BBMediumShortRatio";
43 
44  m_mediumShortRatio = m_mediumSide / m_shortSide;
45  }
46 
47  BBMediumShortRatio(const std::pair<std::string, std::vector<Eigen::Vector3f>>& points) :
48  BBFeature(points)
49  {
50  m_name = "BBMediumShortRatio";
51 
52  m_mediumShortRatio = m_mediumSide / m_shortSide;
53  }
54 
55  double
57  {
58  return m_mediumShortRatio;
59  }
60 
62  calculate(const Points& points)
63  {
64  return FeaturePtr(new BBMediumShortRatio(points));
65  }
66 
68  calculate(const TaggedPoints& points)
69  {
70  return FeaturePtr(new BBMediumShortRatio(points));
71  }
72 
73  double
74  compare(const Feature& other) const
75  {
76  const BBMediumShortRatio* casted = dynamic_cast<const BBMediumShortRatio*>(&other);
77 
78  if (casted)
79  {
80  return std::pow(m_mediumShortRatio - casted->mediumShortRatio(), 2.0);
81  }
82  else
83  {
85  }
86  }
87 
88  virtual void
89  serialize(const ObjectSerializerBasePtr& serializer, const Ice::Current&) const
90  {
91  AbstractObjectSerializerPtr obj = AbstractObjectSerializerPtr::dynamicCast(serializer);
92 
93  AbstractObjectSerializerPtr featureObj;
94 
95  //Check if object already has a "features" field, else create a new one
96  if (obj->hasElement(FEATURE_FIELD_NAME))
97  {
98  featureObj = obj->getElement(FEATURE_FIELD_NAME);
99  featureObj->setDouble(m_name, m_mediumShortRatio);
100  }
101  else
102  {
103  featureObj = obj->createElement();
104  featureObj->setDouble(m_name, m_mediumShortRatio);
105  obj->setElement(FEATURE_FIELD_NAME, featureObj);
106  }
107  }
108 
109  virtual void
110  deserialize(const ObjectSerializerBasePtr& serializer, const Ice::Current&)
111  {
112  AbstractObjectSerializerPtr obj = AbstractObjectSerializerPtr::dynamicCast(serializer);
113  AbstractObjectSerializerPtr featureObj = obj->getElement(FEATURE_FIELD_NAME);
114  //Now copy the result array from the DB
115  m_mediumShortRatio = featureObj->getDouble(m_name);
116  }
117 
118  virtual std::ostream&
119  output(std::ostream& out) const
120  {
121  return out << m_mediumShortRatio;
122  }
123 
124 private:
125  double m_mediumShortRatio;
126 };
Feature
Definition: Feature.hpp:45
Feature::m_name
std::string m_name
Definition: Feature.hpp:101
BBMediumShortRatio::mediumShortRatio
double mediumShortRatio() const
Definition: BBMediumShort.hpp:56
BBMediumShortRatio::output
virtual std::ostream & output(std::ostream &out) const
Definition: BBMediumShort.hpp:119
Feature::TaggedPoints
std::pair< std::string, Points > TaggedPoints
Definition: Feature.hpp:49
BBMediumShortRatio::BBMediumShortRatio
BBMediumShortRatio(const std::vector< Eigen::Vector3f > &points)
Definition: BBMediumShort.hpp:40
BBFeature.hpp
BBMediumShortRatio::calculate
FeaturePtr calculate(const TaggedPoints &points)
Definition: BBMediumShort.hpp:68
IceInternal::Handle
Definition: forward_declarations.h:8
FEATURE_FIELD_NAME
const std::string FEATURE_FIELD_NAME
Definition: Feature.hpp:43
Feature::Points
std::vector< Eigen::Vector3f > Points
Definition: Feature.hpp:48
BBFeature::m_mediumSide
double m_mediumSide
Definition: BBFeature.hpp:82
BBMediumShortRatio::compare
double compare(const Feature &other) const
Definition: BBMediumShort.hpp:74
BBMediumShortRatio
Definition: BBMediumShort.hpp:33
BBMediumShortRatio::serialize
virtual void serialize(const ObjectSerializerBasePtr &serializer, const Ice::Current &) const
Definition: BBMediumShort.hpp:89
max
T max(T t1, T t2)
Definition: gdiam.h:51
BBMediumShortRatio::calculate
FeaturePtr calculate(const Points &points)
Definition: BBMediumShort.hpp:62
BBFeature
Definition: BBFeature.hpp:54
BBMediumShortRatio::BBMediumShortRatio
BBMediumShortRatio()
Definition: BBMediumShort.hpp:36
BBMediumShortRatio::BBMediumShortRatio
BBMediumShortRatio(const std::pair< std::string, std::vector< Eigen::Vector3f >> &points)
Definition: BBMediumShort.hpp:47
Feature::FeaturePtr
std::shared_ptr< Feature > FeaturePtr
Definition: Feature.hpp:50
BBFeature::m_shortSide
double m_shortSide
Definition: BBFeature.hpp:81
BBMediumShortRatio::deserialize
virtual void deserialize(const ObjectSerializerBasePtr &serializer, const Ice::Current &)
Definition: BBMediumShort.hpp:110
FeaturePtr
std::shared_ptr< Feature > FeaturePtr
Definition: Feature.hpp:104