-
Notifications
You must be signed in to change notification settings - Fork 14
/
filters_plugin.xml
57 lines (56 loc) · 2.79 KB
/
filters_plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<library path="lib/libiirob_filters">
<class name="iirob_filters/GravityCompensatorDouble" type="iirob_filters::GravityCompensator<double>" base_class_type="filters::FilterBase<double>">
<description>
This is a gravity compensator.
</description>
</class>
<class name="iirob_filters/LowPassFilterDouble" type="iirob_filters::LowPassFilter<double>" base_class_type="filters::FilterBase<double>">
<description>
This is a low pass filter.
</description>
</class>
<class name="iirob_filters/ThresholdFilterDouble" type="iirob_filters::ThresholdFilter<double>" base_class_type="filters::FilterBase<double>">
<description>
This is a threshold filter.
</description>
</class>
<class name="iirob_filters/LowPassFilterWrench" type="iirob_filters::LowPassFilter<geometry_msgs::WrenchStamped>" base_class_type="filters::FilterBase<geometry_msgs::WrenchStamped>">
<description>
This is a low pass filter working with geometry_msgs::WrenchStamped.
</description>
</class>
<class name="iirob_filters/GravityCompensatorWrench" type="iirob_filters::GravityCompensator<geometry_msgs::WrenchStamped>" base_class_type="filters::FilterBase<geometry_msgs::WrenchStamped>">
<description>
This is a gravity compensator working with geometry_msgs::WrenchStamped.
</description>
</class>
<class name="iirob_filters/ThresholdFilterWrench" type="iirob_filters::ThresholdFilter<geometry_msgs::WrenchStamped>" base_class_type="filters::FilterBase<geometry_msgs::WrenchStamped>">
<description>
This is a threshold filter working with geometry_msgs::WrenchStamped.
</description>
</class>
<class name="iirob_filters/MultiChannelLowPassFilter" type="iirob_filters::MultiChannelLowPassFilter<double>"
base_class_type="filters::MultiChannelFilterBase<double>">
<description>
This is a low pass filter which works on a stream of vectors of doubles.
</description>
</class>
<class name="iirob_filters/MultiChannelKalmanFilter" type="iirob_filters::MultiChannelKalmanFilter<double>"
base_class_type="filters::MultiChannelFilterBase<double>">
<description>
This is a Kalman filter which works on a stream of vectors of doubles.
</description>
</class>
<class name="iirob_filters/MultiChannelThresholdFilter" type="iirob_filters::MultiChannelThresholdFilter<double>"
base_class_type="filters::MultiChannelFilterBase<double>">
<description>
This is a threshold filter which works on a stream of vectors of doubles.
</description>
</class>
<class name="iirob_filters/MovingMeanFilterWrench" type="iirob_filters::MovingMeanFilter<geometry_msgs::WrenchStamped>"
base_class_type="filters::FilterBase<geometry_msgs::WrenchStamped>">
<description>
This is a moving mean which works with geometry_msgs::WrenchStamped
</description>
</class>
</library>