Skip to content

Commit dba34b6

Browse files
fix: fix ci-cpplint check error and spell-sheck error: v0.4
Signed-off-by: liuXinGangChina <lxg19892021@gmail.com>
1 parent dde1f43 commit dba34b6

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

localization/autoware_localization_util/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
## Overview
44

5-
`autoware_localization_util` is a collection of localization utility packages. It contains 5 individual libiary that used by autoware localization nodes.
5+
`autoware_localization_util` is a collection of localization utility packages. It contains 5 individual library that used by autoware localization nodes.
66

77
- `covariance_ellipse` 2d covariance visualization wrapper.
88
- `smart_pose_buffer` pose buffer management library which contains interpolate and data validation.
9-
- `tree_structured_parzen_estimator` A Tree Structured Parzen Estimator (AKA TSPE) library.
9+
- `tree_structured_parzen_estimator` A Tree Structured Parzen Estimator library.
1010
- `util_func` A tool library which contains several function for localization nodes.
1111

1212
## Design
1313

1414
- `covariance_ellipse` Translate `geometry_msgs::msg::PoseWithCovariance` message into ellipse visual marker to demonstrate covariance distribution.
1515
- `smart_pose_buffer` A buffer library which implements pose message buffering, pose interpolate and pose validation.
16-
- `tree_structured_parzen_estimator` A Probability Estimator (AKA TSPE) library that includes estimator and log likelihood ratio calculation.
16+
- `tree_structured_parzen_estimator` A Probability Estimator library that includes estimator and log likelihood ratio calculation.
1717
- `util_func` Tool function collection.
1818

1919
## Usage
@@ -116,7 +116,7 @@ using autoware::localization_util::point_to_vector3d;
116116
using autoware::localization_util::pose_to_matrix4f;
117117
```
118118

119-
list of usefull function
119+
list of useful function
120120

121121
```cpp
122122
std_msgs::msg::ColorRGBA exchange_color_crc(double x);

localization/autoware_localization_util/include/autoware/localization_util/covariance_ellipse.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
#include <geometry_msgs/msg/pose_with_covariance.hpp>
2121
#include <visualization_msgs/msg/marker_array.hpp>
2222

23+
#include <vector>
24+
2325
namespace autoware::localization_util
2426
{
2527

localization/autoware_localization_util/include/autoware/localization_util/util_func.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
#include <random>
3535
#include <vector>
3636

37+
#include <algorithm>
38+
#include <string>
39+
3740
namespace autoware::localization_util
3841
{
3942
// ref by http://takacity.blog.fc2.com/blog-entry-69.html

0 commit comments

Comments
 (0)