48 [[nodiscard]] std::string
type()
const override;
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Data storage class for one VectorNavImu observation.
Parent Class for all IMU Observations.
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
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