Skip to content

Commit

Permalink
fix: fix ci-cpplint check error and spell-sheck error: v0.4
Browse files Browse the repository at this point in the history
Signed-off-by: liuXinGangChina <[email protected]>
  • Loading branch information
liuXinGangChina committed Jan 6, 2025
1 parent dde1f43 commit dba34b6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
8 changes: 4 additions & 4 deletions localization/autoware_localization_util/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

## Overview

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

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

## Design

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

## Usage
Expand Down Expand Up @@ -116,7 +116,7 @@ using autoware::localization_util::point_to_vector3d;
using autoware::localization_util::pose_to_matrix4f;
```

list of usefull function
list of useful function

```cpp
std_msgs::msg::ColorRGBA exchange_color_crc(double x);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
#include <geometry_msgs/msg/pose_with_covariance.hpp>
#include <visualization_msgs/msg/marker_array.hpp>

#include <vector>

namespace autoware::localization_util
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
#include <random>
#include <vector>

#include <algorithm>
#include <string>

namespace autoware::localization_util
{
// ref by http://takacity.blog.fc2.com/blog-entry-69.html
Expand Down

0 comments on commit dba34b6

Please sign in to comment.