0.3.0
Loading...
Searching...
No Matches
LowPassFilter.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
14
15#pragma once
16
18
21
22#include "util/Eigen.hpp"
23#include <map>
24
25namespace NAV
26{
28class LowPassFilter : public Node
29{
30 public:
34 ~LowPassFilter() override;
36 LowPassFilter(const LowPassFilter&) = delete;
43
45 [[nodiscard]] static std::string typeStatic();
46
48 [[nodiscard]] std::string type() const override;
49
51 [[nodiscard]] static std::string category();
52
55 void guiConfig() override;
56
58 [[nodiscard]] json save() const override;
59
62 void restore(const json& j) override;
63
64 private:
65 constexpr static size_t OUTPUT_PORT_INDEX_FLOW = 0;
66 constexpr static size_t INPUT_PORT_INDEX_FLOW = 0;
67
68 // ###########################################################################################################
69
71 enum class FilterType : uint8_t
72 {
73 Linear,
74 // Experimental,
75 COUNT,
76 };
77
80 {
82 FilterItem() = default;
83
89
91 std::string dataDescription;
93 size_t dataIndex = 0;
99 std::map<InsTime, double> dataToFilter;
101 bool modified = true;
102 };
103
106
108 std::vector<std::string> _availableItems;
110 std::vector<FilterItem> _filterItems;
111
115 static const char* to_string(FilterType value);
116
118 bool resetNode() override;
119
123 void afterCreateLink(OutputPin& startPin, InputPin& endPin) override;
124
128 void afterDeleteLink(OutputPin& startPin, InputPin& endPin) override;
129
133 void receiveObs(InputPin::NodeDataQueue& queue, size_t pinIdx);
134
139 [[nodiscard]] static std::optional<double> filterData(FilterItem& item, const InsTime& insTime, double value);
140
141 friend void to_json(json& j, const FilterItem& data);
142 friend void from_json(const json& j, FilterItem& data);
143};
144
148void to_json(json& j, const NAV::LowPassFilter::FilterItem& data);
152void from_json(const json& j, NAV::LowPassFilter::FilterItem& data);
153
154} // namespace NAV
Vector space operations.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Data storage class for one VectorNavImu observation.
Parent Class for all IMU Observations.
Node Class.
void move(std::vector< T > &v, size_t sourceIdx, size_t targetIdx)
Moves an element within a vector to a new position.
Definition Vector.hpp:26
Input pins of nodes.
Definition Pin.hpp:491
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Filters incoming data.
Definition LowPassFilter.hpp:29
static std::optional< double > filterData(FilterItem &item, const InsTime &insTime, double value)
Filter the provided data.
void afterCreateLink(OutputPin &startPin, InputPin &endPin) override
Called when a new link was established.
void restore(const json &j) override
Restores the node from a json object.
std::vector< FilterItem > _filterItems
Items to filter.
Definition LowPassFilter.hpp:110
static std::string category()
String representation of the Class Category.
LowPassFilter & operator=(LowPassFilter &&)=delete
Move assignment operator.
LowPassFilter()
Default constructor.
LowPassFilter(LowPassFilter &&)=delete
Move constructor.
size_t _gui_availableItemsSelection
Selected item in the combo.
Definition LowPassFilter.hpp:105
static std::string typeStatic()
String representation of the Class Type.
LowPassFilter & operator=(const LowPassFilter &)=delete
Copy assignment operator.
bool resetNode() override
Resets the node. It is guaranteed that the node is initialized when this is called.
void afterDeleteLink(OutputPin &startPin, InputPin &endPin) override
Called when a link was deleted.
~LowPassFilter() override
Destructor.
LowPassFilter(const LowPassFilter &)=delete
Copy constructor.
static constexpr size_t INPUT_PORT_INDEX_FLOW
Flow.
Definition LowPassFilter.hpp:66
FilterType
Types of available filters (to be extended)
Definition LowPassFilter.hpp:72
@ Linear
Linear fit filter.
@ COUNT
Amount of items in the enum.
json save() const override
Saves the node into a json object.
void guiConfig() override
ImGui config window which is shown on double click.
std::string type() const override
String representation of the Class Type.
friend void from_json(const json &j, FilterItem &data)
Converts the provided json object into a link object.
friend void to_json(json &j, const FilterItem &data)
Converts the provided link into a json object.
std::vector< std::string > _availableItems
Available items.
Definition LowPassFilter.hpp:108
static constexpr size_t OUTPUT_PORT_INDEX_FLOW
Flow.
Definition LowPassFilter.hpp:65
void receiveObs(InputPin::NodeDataQueue &queue, size_t pinIdx)
Callback when receiving data on a port.
static const char * to_string(FilterType value)
Converts the enum to a string.
Abstract parent class for all nodes.
Definition Node.hpp:86
Output pins of nodes.
Definition Pin.hpp:338
Filter description.
Definition LowPassFilter.hpp:80
FilterItem()=default
Default Constructor.
std::string dataDescription
Description of the data.
Definition LowPassFilter.hpp:91
size_t dataIndex
Index of the data.
Definition LowPassFilter.hpp:93
FilterType filterType
Selected filter type in the GUI.
Definition LowPassFilter.hpp:95
double linear_filter_cutoff_frequency
Cutoff frequency [Hz], inverse of this parameter equals to fitting period.
Definition LowPassFilter.hpp:97
FilterItem(std::string dataDescription, size_t dataIndex)
Constructor.
Definition LowPassFilter.hpp:87
bool modified
Flag to show indicator that it was modified.
Definition LowPassFilter.hpp:101
std::map< InsTime, double > dataToFilter
Map which stores all last data points which were used in the previous fit.
Definition LowPassFilter.hpp:99