1
1
# autoware_localization_util
2
2
3
3
## Overview
4
+
4
5
` autoware_localization_util ` is a collection of localization utility packages. It contains 5 individual libiary that used by autoware localization nodes.
5
6
6
7
- ` covariance_ellipse ` 2d covariance visualization wrapper.
10
11
- ` util_func ` A tool library which contains several function for localization nodes.
11
12
12
13
## Design
14
+
13
15
- ` covariance_ellipse ` Translate ` geometry_msgs::msg::PoseWithCovariance ` message into ellipse visual marker to demonstrate covariance distribution.
14
16
- ` diagnostics_module ` Manage diagnostics message's content, level and publish timing of localization nodes.
15
17
- ` smart_pose_buffer ` A buffer library which implements pose message buffering, pose interpolate and pose validation.
16
18
- ` tree_structured_parzen_estimator ` A Probability Estimator (AKA TSPE) library that includes estimator and log likelihood ratio calculation.
17
19
- ` util_func ` Tool function collection.
18
20
19
21
## Usage
20
- ### covariance_ellipse
22
+
23
+ ### covariance_ellipse
24
+
21
25
Include header file to use:
22
26
23
27
``` cpp
24
28
#include " autoware/localization_util/covariance_ellipse.hpp"
25
29
```
26
30
27
31
calculate ellipse and visualize
32
+
28
33
``` cpp
29
34
autoware::localization_util::Ellipse ellipse_ = autoware::localization_util::calculate_xy_ellipse(input_msg->pose, scale_);
30
35
@@ -35,17 +40,20 @@ autoware::localization_util::Ellipse ellipse_ = autoware::localization_util::cal
35
40
### diagnostics_module
36
41
37
42
Include header file to use:
43
+
38
44
``` cpp
39
45
#include " autoware/localization_util/diagnostics_module.hpp"
40
46
```
41
47
42
48
init diagnostics manager
49
+
43
50
``` cpp
44
51
std::unique_ptr<autoware::localization_util::DiagnosticsModule> diagnostics_ =
45
52
std::make_unique<autoware::localization_util::DiagnosticsModule>(this , " gyro_odometer_status" );
46
53
```
47
54
48
55
clean message buffer, add message, set diagnostics message logging level and publish diagnostics message
56
+
49
57
``` cpp
50
58
diagnostics_->clear ();
51
59
diagnostics_->add_key_value (
@@ -67,6 +75,7 @@ diagnostics_->publish(vehicle_twist_msg_ptr->header.stamp);
67
75
### smart_pose_buffer
68
76
69
77
buffer init
78
+
70
79
```cpp
71
80
#include "autoware/localization_util/smart_pose_buffer.hpp"
72
81
@@ -79,6 +88,7 @@ initial_pose_buffer_ = std::make_unique<SmartPoseBuffer>(
79
88
```
80
89
81
90
interpolate and pop out old pose message
91
+
82
92
``` cpp
83
93
std::optional<SmartPoseBuffer::InterpolateResult> interpolation_result_opt =
84
94
initial_pose_buffer_->interpolate (sensor_ros_time);
@@ -91,6 +101,7 @@ interpolation_result_opt.value();
91
101
```
92
102
93
103
clear buffer
104
+
94
105
```cpp
95
106
initial_pose_buffer_->clear();
96
107
```
@@ -111,11 +122,13 @@ param_.initial_pose_estimation.n_startup_trials, sample_mean, sample_stddev);
111
122
```
112
123
113
124
get estimation result
125
+
114
126
```cpp
115
127
const TreeStructuredParzenEstimator::Input input = tpe.get_next_input();
116
128
```
117
129
118
130
add new data to the estimator
131
+
119
132
``` cpp
120
133
TreeStructuredParzenEstimator::Input result (6);
121
134
result[ 0] = pose.position.x;
@@ -130,6 +143,7 @@ tpe.add_trial(TreeStructuredParzenEstimator::Trial{result, ndt_result.transform_
130
143
### util_func
131
144
132
145
include header file to use
146
+
133
147
```cpp
134
148
#include "autoware/localization_util/util_func.hpp"
135
149
@@ -140,6 +154,7 @@ using autoware::localization_util::pose_to_matrix4f;
140
154
```
141
155
142
156
list of usefull function
157
+
143
158
``` cpp
144
159
std_msgs::msg::ColorRGBA exchange_color_crc (double x);
145
160
double calc_diff_for_radian(const double lhs_rad, const double rhs_rad);
@@ -168,4 +183,4 @@ T transform(const T & input, const geometry_msgs::msg::TransformStamped & transf
168
183
void output_pose_with_cov_to_log(
169
184
const rclcpp::Logger & logger, const std::string & prefix,
170
185
const geometry_msgs::msg::PoseWithCovarianceStamped & pose_with_cov);
171
- ```
186
+ ```
0 commit comments