Skip to content

Commit f496f24

Browse files
style(pre-commit): autofix
1 parent a35886d commit f496f24

File tree

1 file changed

+17
-2
lines changed
  • localization/autoware_localization_util

1 file changed

+17
-2
lines changed

localization/autoware_localization_util/README.md

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# autoware_localization_util
22

33
## Overview
4+
45
`autoware_localization_util` is a collection of localization utility packages. It contains 5 individual libiary that used by autoware localization nodes.
56

67
- `covariance_ellipse` 2d covariance visualization wrapper.
@@ -10,21 +11,25 @@
1011
- `util_func` A tool library which contains several function for localization nodes.
1112

1213
## Design
14+
1315
- `covariance_ellipse` Translate `geometry_msgs::msg::PoseWithCovariance` message into ellipse visual marker to demonstrate covariance distribution.
1416
- `diagnostics_module` Manage diagnostics message's content, level and publish timing of localization nodes.
1517
- `smart_pose_buffer` A buffer library which implements pose message buffering, pose interpolate and pose validation.
1618
- `tree_structured_parzen_estimator` A Probability Estimator (AKA TSPE) library that includes estimator and log likelihood ratio calculation.
1719
- `util_func` Tool function collection.
1820

1921
## Usage
20-
### covariance_ellipse
22+
23+
### covariance_ellipse
24+
2125
Include header file to use:
2226

2327
```cpp
2428
#include "autoware/localization_util/covariance_ellipse.hpp"
2529
```
2630

2731
calculate ellipse and visualize
32+
2833
```cpp
2934
autoware::localization_util::Ellipse ellipse_ = autoware::localization_util::calculate_xy_ellipse(input_msg->pose, scale_);
3035

@@ -35,17 +40,20 @@ autoware::localization_util::Ellipse ellipse_ = autoware::localization_util::cal
3540
### diagnostics_module
3641

3742
Include header file to use:
43+
3844
```cpp
3945
#include "autoware/localization_util/diagnostics_module.hpp"
4046
```
4147

4248
init diagnostics manager
49+
4350
```cpp
4451
std::unique_ptr<autoware::localization_util::DiagnosticsModule> diagnostics_ =
4552
std::make_unique<autoware::localization_util::DiagnosticsModule>(this, "gyro_odometer_status");
4653
```
4754

4855
clean message buffer, add message, set diagnostics message logging level and publish diagnostics message
56+
4957
```cpp
5058
diagnostics_->clear();
5159
diagnostics_->add_key_value(
@@ -67,6 +75,7 @@ diagnostics_->publish(vehicle_twist_msg_ptr->header.stamp);
6775
### smart_pose_buffer
6876
6977
buffer init
78+
7079
```cpp
7180
#include "autoware/localization_util/smart_pose_buffer.hpp"
7281
@@ -79,6 +88,7 @@ initial_pose_buffer_ = std::make_unique<SmartPoseBuffer>(
7988
```
8089

8190
interpolate and pop out old pose message
91+
8292
```cpp
8393
std::optional<SmartPoseBuffer::InterpolateResult> interpolation_result_opt =
8494
initial_pose_buffer_->interpolate(sensor_ros_time);
@@ -91,6 +101,7 @@ interpolation_result_opt.value();
91101
```
92102
93103
clear buffer
104+
94105
```cpp
95106
initial_pose_buffer_->clear();
96107
```
@@ -111,11 +122,13 @@ param_.initial_pose_estimation.n_startup_trials, sample_mean, sample_stddev);
111122
```
112123
113124
get estimation result
125+
114126
```cpp
115127
const TreeStructuredParzenEstimator::Input input = tpe.get_next_input();
116128
```
117129

118130
add new data to the estimator
131+
119132
```cpp
120133
TreeStructuredParzenEstimator::Input result(6);
121134
result[0] = pose.position.x;
@@ -130,6 +143,7 @@ tpe.add_trial(TreeStructuredParzenEstimator::Trial{result, ndt_result.transform_
130143
### util_func
131144
132145
include header file to use
146+
133147
```cpp
134148
#include "autoware/localization_util/util_func.hpp"
135149
@@ -140,6 +154,7 @@ using autoware::localization_util::pose_to_matrix4f;
140154
```
141155

142156
list of usefull function
157+
143158
```cpp
144159
std_msgs::msg::ColorRGBA exchange_color_crc(double x);
145160
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
168183
void output_pose_with_cov_to_log(
169184
const rclcpp::Logger & logger, const std::string & prefix,
170185
const geometry_msgs::msg::PoseWithCovarianceStamped & pose_with_cov);
171-
```
186+
```

0 commit comments

Comments
 (0)