Skip to content

Commit

Permalink
modify url
Browse files Browse the repository at this point in the history
  • Loading branch information
nanoshimarobot committed Dec 8, 2024
1 parent fca2348 commit 6c67b00
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions docs/use_case/ground_segmentation.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ Launching the file executes the following steps:
### Points to note during evaluation

- **annotated_rosbag mode**
The [sensing module of autoware.universe](https://github.com/autowarefoundation/autoware.universe/blob/main/sensing/autoware_pointcloud_preprocessor/src/filter.cpp#L383-L390) needs to be modified as follows:
The [sensing module of autoware.universe](https://github.com/autowarefoundation/autoware.universe/blob/main/sensing/autoware_pointcloud_preprocessor/src/filter.cpp#L386-L394) needs to be modified as follows:

```diff
if (utils::is_data_layout_compatible_with_point_xyzi(*cloud)) {
RCLCPP_ERROR(
get_logger(),
"The pointcloud layout is compatible with PointXYZI. You may be using legacy "
"code/data");
}
if (utils::is_data_layout_compatible_with_point_xyzi(*cloud)) {
RCLCPP_ERROR(
get_logger(),
"The pointcloud layout is compatible with PointXYZI. You may be using legacy "
"code/data");
}

- return;
+ // return; <- comment out!
+ //return;
}
```

Expand Down
16 changes: 8 additions & 8 deletions docs/use_case/ground_segmentation.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ launch を立ち上げると以下のことが実行され、評価される。
### 評価時の注意点

- **annotated_rosbagモード**
[autoware.universeのsensingモジュール](https://github.com/autowarefoundation/autoware.universe/blob/main/sensing/autoware_pointcloud_preprocessor/src/filter.cpp#L383-L390)を以下のように書き換える必要がある。
[autoware.universeのsensingモジュール](https://github.com/autowarefoundation/autoware.universe/blob/main/sensing/autoware_pointcloud_preprocessor/src/filter.cpp#L386-L394)を以下のように書き換える必要がある。

```diff
if (utils::is_data_layout_compatible_with_point_xyzi(*cloud)) {
RCLCPP_ERROR(
get_logger(),
"The pointcloud layout is compatible with PointXYZI. You may be using legacy "
"code/data");
}
if (utils::is_data_layout_compatible_with_point_xyzi(*cloud)) {
RCLCPP_ERROR(
get_logger(),
"The pointcloud layout is compatible with PointXYZI. You may be using legacy "
"code/data");
}

- return;
+ // return; <- comment out!
+ //return;
}
```

Expand Down

0 comments on commit 6c67b00

Please sign in to comment.