PoseMedianOffsetFilter.h
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
27
28#include <RobotAPI/interface/core/PoseBase.h>
30
31namespace armarx::filters
32{
33
34 /**
35 * @class PoseMedianOffsetFilter
36 * @ingroup ObserverFilters
37 * @brief The MedianFilter class provides an implementation
38 * for a median for datafields of type float, int and double.
39 */
40 class PoseMedianOffsetFilter : public ::armarx::PoseMedianOffsetFilterBase, public MedianFilter
41 {
42 public:
43 PoseMedianOffsetFilter(int windowSize = 11);
44
45 // DatafieldFilterBase interface
46 public:
47 VariantBasePtr calculate(const Ice::Current& c) const override;
48
49 /**
50 * @brief This filter supports: Vector3, FramedDirection, FramedPosition
51 * @return List of VariantTypes
52 */
53 ParameterTypeList getSupportedTypes(const Ice::Current& c) const override;
54
55 private:
56 Eigen::Vector3f offset;
57 Eigen::Vector3f currentValue;
58 std::vector<Eigen::Vector3f> data;
59 int dataIndex;
60
61 float median(std::vector<float>& values);
62 Eigen::Vector3f calculateMedian();
63
64 public:
65 void
66 update(Ice::Long timestamp, const VariantBasePtr& value, const Ice::Current& c) override;
67 };
68
69} // namespace armarx::filters
std::string timestamp()
constexpr T c
MedianFilter(int windowSize=11)
VariantBasePtr calculate(const Ice::Current &c) const override
void update(Ice::Long timestamp, const VariantBasePtr &value, const Ice::Current &c) override
ParameterTypeList getSupportedTypes(const Ice::Current &c) const override
This filter supports: Vector3, FramedDirection, FramedPosition.
::IceInternal::Handle<::armarx::VariantBase > VariantBasePtr