Package Summary
Tags | No category tags. |
Version | 0.47.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | |
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-08-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | planner ros calibration self-driving-car autonomous-driving autonomous-vehicles ros2 3d-map autoware |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- Yoshi Ri
- Yukihiro Saito
- Taekjin Lee
Authors
- Kosuke Takeuchi
- Yukihiro Saito
autoware_lidar_apollo_instance_segmentation
Purpose
This node segments 3D pointcloud data from lidar sensors into obstacles, e.g., cars, trucks, bicycles, and pedestrians based on CNN based model and obstacle clustering method.
Inner-workings / Algorithms
See the original design by Apollo.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/pointcloud |
sensor_msgs/PointCloud2 |
Pointcloud data from lidar sensors |
Output
Name | Type | Description |
---|---|---|
output/labeled_clusters |
tier4_perception_msgs/DetectedObjectsWithFeature |
Detected objects with labeled pointcloud cluster. |
debug/instance_pointcloud |
sensor_msgs/PointCloud2 |
Segmented pointcloud for visualization. |
Parameters
Node Parameters
None
Core Parameters
Name | Type | Default Value | Description |
---|---|---|---|
score_threshold |
double | 0.8 | If the score of a detected object is lower than this value, the object is ignored. |
range |
int | 60 | Half of the length of feature map sides. [m] |
width |
int | 640 | The grid width of feature map. |
height |
int | 640 | The grid height of feature map. |
engine_file |
string | “vls-128.engine” | The name of TensorRT engine file for CNN model. |
prototxt_file |
string | “vls-128.prototxt” | The name of prototxt file for CNN model. |
caffemodel_file |
string | “vls-128.caffemodel” | The name of caffemodel file for CNN model. |
use_intensity_feature |
bool | true | The flag to use intensity feature of pointcloud. |
use_constant_feature |
bool | false | The flag to use direction and distance feature of pointcloud. |
target_frame |
string | “base_link” | Pointcloud data is transformed into this frame. |
z_offset |
int | 2 | z offset from target frame. [m] |
build_only |
bool | false |
shutdown the node after TensorRT engine file is built |
Assumptions / Known limits
There is no training code for CNN model.
Note
This package makes use of three external codes. The trained files are provided by apollo. The trained files are automatically downloaded when you build.
Original URL
- VLP-16 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne16/deploy.caffemodel
- HDL-64 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne64/deploy.caffemodel
- VLS-128 : https://github.com/ApolloAuto/apollo/raw/91844c80ee4bd0cc838b4de4c625852363c258b5/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne128/deploy.caffemodel
Supported lidars are velodyne 16, 64 and 128, but you can also use velodyne 32 and other lidars with good accuracy.
/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
- tensorRTWrapper : It is used under the lib directory.
```txt MIT License
Copyright (c) 2018 lewes6369
Permission is hereby granted, free of charge, to any person obtaining a copy
File truncated at 100 lines see the full file
Changelog for package autoware_lidar_apollo_instance_segmentation
0.47.0 (2025-08-11)
0.46.0 (2025-06-20)
0.45.0 (2025-05-22)
-
Merge remote-tracking branch 'origin/main' into tmp/notbot/bump_version_base
-
chore: perception code owner update (#10645)
- chore: update maintainers in multiple perception packages
* Revert "chore: update maintainers in multiple perception packages" This reverts commit f2838c33d6cd82bd032039e2a12b9cb8ba6eb584.
- chore: update maintainers in multiple perception packages
* chore: add Kok Seang Tan as maintainer in multiple perception packages ---------
-
Contributors: Taekjin LEE, TaikiYamada4
0.44.2 (2025-06-10)
0.44.1 (2025-05-01)
0.44.0 (2025-04-18)
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- refactor: add autoware_cuda_dependency_meta (#10073)
- Contributors: Esteve Fernandez, Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_utils): replace autoware_universe_utils with autoware_utils (#10191)
- Contributors: Fumiya Watanabe, 心刚
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(autoware_lidar_apollo_instance_segmentation): tier4_debug_msgs to autoware_internal_debug_msgs in files perce… (#9876) feat: tier4_debug_msgs to autoware_internal_debug_msgs in files perception/autoware_lidar_apollo_instance_segmentation Co-authored-by: Ryohsuke Mitsudome <<43976834+mitsudome-r@users.noreply.github.com>>
-
refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components (#9762)
- refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components
- style(pre-commit): autofix
- style(autoware_tensorrt_common): linting
* style(autoware_lidar_centerpoint): typo Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* docs(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_lidar_transfusion): reuse cast variable
- fix(autoware_tensorrt_common): remove deprecated inference API
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_tensorrt_common): const pointer
- fix(autoware_tensorrt_common): remove unused method declaration
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Name |
---|
libpcl-all-dev |
Dependant Packages
Name | Deps |
---|---|
tier4_perception_launch |
Launch files
- launch/lidar_apollo_instance_segmentation.launch.xml
-
- input/pointcloud [default: /sensing/lidar/pointcloud]
- model [default: model_128]
- output/objects [default: labeled_clusters]
- build_only [default: false]
- base_name [default: vlp-16]
- base_name [default: hdl-64]
- base_name [default: vls-128]
- data_path [default: $(env HOME)/autoware_data]
- trained_onnx_file [default: $(var data_path)/lidar_apollo_instance_segmentation/$(var base_name).onnx]
- param_file [default: $(find-pkg-share autoware_lidar_apollo_instance_segmentation)/config/$(var base_name).param.yaml]
- target_frame [default: base_link]
- z_offset [default: -2.0]
- precision [default: fp32]
Messages
Services
Plugins
Recent questions tagged autoware_lidar_apollo_instance_segmentation at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.47.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | |
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-08-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | planner ros calibration self-driving-car autonomous-driving autonomous-vehicles ros2 3d-map autoware |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- Yoshi Ri
- Yukihiro Saito
- Taekjin Lee
Authors
- Kosuke Takeuchi
- Yukihiro Saito
autoware_lidar_apollo_instance_segmentation
Purpose
This node segments 3D pointcloud data from lidar sensors into obstacles, e.g., cars, trucks, bicycles, and pedestrians based on CNN based model and obstacle clustering method.
Inner-workings / Algorithms
See the original design by Apollo.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/pointcloud |
sensor_msgs/PointCloud2 |
Pointcloud data from lidar sensors |
Output
Name | Type | Description |
---|---|---|
output/labeled_clusters |
tier4_perception_msgs/DetectedObjectsWithFeature |
Detected objects with labeled pointcloud cluster. |
debug/instance_pointcloud |
sensor_msgs/PointCloud2 |
Segmented pointcloud for visualization. |
Parameters
Node Parameters
None
Core Parameters
Name | Type | Default Value | Description |
---|---|---|---|
score_threshold |
double | 0.8 | If the score of a detected object is lower than this value, the object is ignored. |
range |
int | 60 | Half of the length of feature map sides. [m] |
width |
int | 640 | The grid width of feature map. |
height |
int | 640 | The grid height of feature map. |
engine_file |
string | “vls-128.engine” | The name of TensorRT engine file for CNN model. |
prototxt_file |
string | “vls-128.prototxt” | The name of prototxt file for CNN model. |
caffemodel_file |
string | “vls-128.caffemodel” | The name of caffemodel file for CNN model. |
use_intensity_feature |
bool | true | The flag to use intensity feature of pointcloud. |
use_constant_feature |
bool | false | The flag to use direction and distance feature of pointcloud. |
target_frame |
string | “base_link” | Pointcloud data is transformed into this frame. |
z_offset |
int | 2 | z offset from target frame. [m] |
build_only |
bool | false |
shutdown the node after TensorRT engine file is built |
Assumptions / Known limits
There is no training code for CNN model.
Note
This package makes use of three external codes. The trained files are provided by apollo. The trained files are automatically downloaded when you build.
Original URL
- VLP-16 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne16/deploy.caffemodel
- HDL-64 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne64/deploy.caffemodel
- VLS-128 : https://github.com/ApolloAuto/apollo/raw/91844c80ee4bd0cc838b4de4c625852363c258b5/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne128/deploy.caffemodel
Supported lidars are velodyne 16, 64 and 128, but you can also use velodyne 32 and other lidars with good accuracy.
/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
- tensorRTWrapper : It is used under the lib directory.
```txt MIT License
Copyright (c) 2018 lewes6369
Permission is hereby granted, free of charge, to any person obtaining a copy
File truncated at 100 lines see the full file
Changelog for package autoware_lidar_apollo_instance_segmentation
0.47.0 (2025-08-11)
0.46.0 (2025-06-20)
0.45.0 (2025-05-22)
-
Merge remote-tracking branch 'origin/main' into tmp/notbot/bump_version_base
-
chore: perception code owner update (#10645)
- chore: update maintainers in multiple perception packages
* Revert "chore: update maintainers in multiple perception packages" This reverts commit f2838c33d6cd82bd032039e2a12b9cb8ba6eb584.
- chore: update maintainers in multiple perception packages
* chore: add Kok Seang Tan as maintainer in multiple perception packages ---------
-
Contributors: Taekjin LEE, TaikiYamada4
0.44.2 (2025-06-10)
0.44.1 (2025-05-01)
0.44.0 (2025-04-18)
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- refactor: add autoware_cuda_dependency_meta (#10073)
- Contributors: Esteve Fernandez, Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_utils): replace autoware_universe_utils with autoware_utils (#10191)
- Contributors: Fumiya Watanabe, 心刚
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(autoware_lidar_apollo_instance_segmentation): tier4_debug_msgs to autoware_internal_debug_msgs in files perce… (#9876) feat: tier4_debug_msgs to autoware_internal_debug_msgs in files perception/autoware_lidar_apollo_instance_segmentation Co-authored-by: Ryohsuke Mitsudome <<43976834+mitsudome-r@users.noreply.github.com>>
-
refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components (#9762)
- refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components
- style(pre-commit): autofix
- style(autoware_tensorrt_common): linting
* style(autoware_lidar_centerpoint): typo Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* docs(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_lidar_transfusion): reuse cast variable
- fix(autoware_tensorrt_common): remove deprecated inference API
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_tensorrt_common): const pointer
- fix(autoware_tensorrt_common): remove unused method declaration
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Name |
---|
libpcl-all-dev |
Dependant Packages
Name | Deps |
---|---|
tier4_perception_launch |
Launch files
- launch/lidar_apollo_instance_segmentation.launch.xml
-
- input/pointcloud [default: /sensing/lidar/pointcloud]
- model [default: model_128]
- output/objects [default: labeled_clusters]
- build_only [default: false]
- base_name [default: vlp-16]
- base_name [default: hdl-64]
- base_name [default: vls-128]
- data_path [default: $(env HOME)/autoware_data]
- trained_onnx_file [default: $(var data_path)/lidar_apollo_instance_segmentation/$(var base_name).onnx]
- param_file [default: $(find-pkg-share autoware_lidar_apollo_instance_segmentation)/config/$(var base_name).param.yaml]
- target_frame [default: base_link]
- z_offset [default: -2.0]
- precision [default: fp32]
Messages
Services
Plugins
Recent questions tagged autoware_lidar_apollo_instance_segmentation at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.47.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | |
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-08-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | planner ros calibration self-driving-car autonomous-driving autonomous-vehicles ros2 3d-map autoware |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- Yoshi Ri
- Yukihiro Saito
- Taekjin Lee
Authors
- Kosuke Takeuchi
- Yukihiro Saito
autoware_lidar_apollo_instance_segmentation
Purpose
This node segments 3D pointcloud data from lidar sensors into obstacles, e.g., cars, trucks, bicycles, and pedestrians based on CNN based model and obstacle clustering method.
Inner-workings / Algorithms
See the original design by Apollo.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/pointcloud |
sensor_msgs/PointCloud2 |
Pointcloud data from lidar sensors |
Output
Name | Type | Description |
---|---|---|
output/labeled_clusters |
tier4_perception_msgs/DetectedObjectsWithFeature |
Detected objects with labeled pointcloud cluster. |
debug/instance_pointcloud |
sensor_msgs/PointCloud2 |
Segmented pointcloud for visualization. |
Parameters
Node Parameters
None
Core Parameters
Name | Type | Default Value | Description |
---|---|---|---|
score_threshold |
double | 0.8 | If the score of a detected object is lower than this value, the object is ignored. |
range |
int | 60 | Half of the length of feature map sides. [m] |
width |
int | 640 | The grid width of feature map. |
height |
int | 640 | The grid height of feature map. |
engine_file |
string | “vls-128.engine” | The name of TensorRT engine file for CNN model. |
prototxt_file |
string | “vls-128.prototxt” | The name of prototxt file for CNN model. |
caffemodel_file |
string | “vls-128.caffemodel” | The name of caffemodel file for CNN model. |
use_intensity_feature |
bool | true | The flag to use intensity feature of pointcloud. |
use_constant_feature |
bool | false | The flag to use direction and distance feature of pointcloud. |
target_frame |
string | “base_link” | Pointcloud data is transformed into this frame. |
z_offset |
int | 2 | z offset from target frame. [m] |
build_only |
bool | false |
shutdown the node after TensorRT engine file is built |
Assumptions / Known limits
There is no training code for CNN model.
Note
This package makes use of three external codes. The trained files are provided by apollo. The trained files are automatically downloaded when you build.
Original URL
- VLP-16 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne16/deploy.caffemodel
- HDL-64 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne64/deploy.caffemodel
- VLS-128 : https://github.com/ApolloAuto/apollo/raw/91844c80ee4bd0cc838b4de4c625852363c258b5/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne128/deploy.caffemodel
Supported lidars are velodyne 16, 64 and 128, but you can also use velodyne 32 and other lidars with good accuracy.
/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
- tensorRTWrapper : It is used under the lib directory.
```txt MIT License
Copyright (c) 2018 lewes6369
Permission is hereby granted, free of charge, to any person obtaining a copy
File truncated at 100 lines see the full file
Changelog for package autoware_lidar_apollo_instance_segmentation
0.47.0 (2025-08-11)
0.46.0 (2025-06-20)
0.45.0 (2025-05-22)
-
Merge remote-tracking branch 'origin/main' into tmp/notbot/bump_version_base
-
chore: perception code owner update (#10645)
- chore: update maintainers in multiple perception packages
* Revert "chore: update maintainers in multiple perception packages" This reverts commit f2838c33d6cd82bd032039e2a12b9cb8ba6eb584.
- chore: update maintainers in multiple perception packages
* chore: add Kok Seang Tan as maintainer in multiple perception packages ---------
-
Contributors: Taekjin LEE, TaikiYamada4
0.44.2 (2025-06-10)
0.44.1 (2025-05-01)
0.44.0 (2025-04-18)
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- refactor: add autoware_cuda_dependency_meta (#10073)
- Contributors: Esteve Fernandez, Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_utils): replace autoware_universe_utils with autoware_utils (#10191)
- Contributors: Fumiya Watanabe, 心刚
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(autoware_lidar_apollo_instance_segmentation): tier4_debug_msgs to autoware_internal_debug_msgs in files perce… (#9876) feat: tier4_debug_msgs to autoware_internal_debug_msgs in files perception/autoware_lidar_apollo_instance_segmentation Co-authored-by: Ryohsuke Mitsudome <<43976834+mitsudome-r@users.noreply.github.com>>
-
refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components (#9762)
- refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components
- style(pre-commit): autofix
- style(autoware_tensorrt_common): linting
* style(autoware_lidar_centerpoint): typo Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* docs(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_lidar_transfusion): reuse cast variable
- fix(autoware_tensorrt_common): remove deprecated inference API
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_tensorrt_common): const pointer
- fix(autoware_tensorrt_common): remove unused method declaration
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Name |
---|
libpcl-all-dev |
Dependant Packages
Name | Deps |
---|---|
tier4_perception_launch |
Launch files
- launch/lidar_apollo_instance_segmentation.launch.xml
-
- input/pointcloud [default: /sensing/lidar/pointcloud]
- model [default: model_128]
- output/objects [default: labeled_clusters]
- build_only [default: false]
- base_name [default: vlp-16]
- base_name [default: hdl-64]
- base_name [default: vls-128]
- data_path [default: $(env HOME)/autoware_data]
- trained_onnx_file [default: $(var data_path)/lidar_apollo_instance_segmentation/$(var base_name).onnx]
- param_file [default: $(find-pkg-share autoware_lidar_apollo_instance_segmentation)/config/$(var base_name).param.yaml]
- target_frame [default: base_link]
- z_offset [default: -2.0]
- precision [default: fp32]
Messages
Services
Plugins
Recent questions tagged autoware_lidar_apollo_instance_segmentation at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.47.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | |
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-08-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | planner ros calibration self-driving-car autonomous-driving autonomous-vehicles ros2 3d-map autoware |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- Yoshi Ri
- Yukihiro Saito
- Taekjin Lee
Authors
- Kosuke Takeuchi
- Yukihiro Saito
autoware_lidar_apollo_instance_segmentation
Purpose
This node segments 3D pointcloud data from lidar sensors into obstacles, e.g., cars, trucks, bicycles, and pedestrians based on CNN based model and obstacle clustering method.
Inner-workings / Algorithms
See the original design by Apollo.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/pointcloud |
sensor_msgs/PointCloud2 |
Pointcloud data from lidar sensors |
Output
Name | Type | Description |
---|---|---|
output/labeled_clusters |
tier4_perception_msgs/DetectedObjectsWithFeature |
Detected objects with labeled pointcloud cluster. |
debug/instance_pointcloud |
sensor_msgs/PointCloud2 |
Segmented pointcloud for visualization. |
Parameters
Node Parameters
None
Core Parameters
Name | Type | Default Value | Description |
---|---|---|---|
score_threshold |
double | 0.8 | If the score of a detected object is lower than this value, the object is ignored. |
range |
int | 60 | Half of the length of feature map sides. [m] |
width |
int | 640 | The grid width of feature map. |
height |
int | 640 | The grid height of feature map. |
engine_file |
string | “vls-128.engine” | The name of TensorRT engine file for CNN model. |
prototxt_file |
string | “vls-128.prototxt” | The name of prototxt file for CNN model. |
caffemodel_file |
string | “vls-128.caffemodel” | The name of caffemodel file for CNN model. |
use_intensity_feature |
bool | true | The flag to use intensity feature of pointcloud. |
use_constant_feature |
bool | false | The flag to use direction and distance feature of pointcloud. |
target_frame |
string | “base_link” | Pointcloud data is transformed into this frame. |
z_offset |
int | 2 | z offset from target frame. [m] |
build_only |
bool | false |
shutdown the node after TensorRT engine file is built |
Assumptions / Known limits
There is no training code for CNN model.
Note
This package makes use of three external codes. The trained files are provided by apollo. The trained files are automatically downloaded when you build.
Original URL
- VLP-16 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne16/deploy.caffemodel
- HDL-64 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne64/deploy.caffemodel
- VLS-128 : https://github.com/ApolloAuto/apollo/raw/91844c80ee4bd0cc838b4de4c625852363c258b5/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne128/deploy.caffemodel
Supported lidars are velodyne 16, 64 and 128, but you can also use velodyne 32 and other lidars with good accuracy.
/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
- tensorRTWrapper : It is used under the lib directory.
```txt MIT License
Copyright (c) 2018 lewes6369
Permission is hereby granted, free of charge, to any person obtaining a copy
File truncated at 100 lines see the full file
Changelog for package autoware_lidar_apollo_instance_segmentation
0.47.0 (2025-08-11)
0.46.0 (2025-06-20)
0.45.0 (2025-05-22)
-
Merge remote-tracking branch 'origin/main' into tmp/notbot/bump_version_base
-
chore: perception code owner update (#10645)
- chore: update maintainers in multiple perception packages
* Revert "chore: update maintainers in multiple perception packages" This reverts commit f2838c33d6cd82bd032039e2a12b9cb8ba6eb584.
- chore: update maintainers in multiple perception packages
* chore: add Kok Seang Tan as maintainer in multiple perception packages ---------
-
Contributors: Taekjin LEE, TaikiYamada4
0.44.2 (2025-06-10)
0.44.1 (2025-05-01)
0.44.0 (2025-04-18)
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- refactor: add autoware_cuda_dependency_meta (#10073)
- Contributors: Esteve Fernandez, Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_utils): replace autoware_universe_utils with autoware_utils (#10191)
- Contributors: Fumiya Watanabe, 心刚
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(autoware_lidar_apollo_instance_segmentation): tier4_debug_msgs to autoware_internal_debug_msgs in files perce… (#9876) feat: tier4_debug_msgs to autoware_internal_debug_msgs in files perception/autoware_lidar_apollo_instance_segmentation Co-authored-by: Ryohsuke Mitsudome <<43976834+mitsudome-r@users.noreply.github.com>>
-
refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components (#9762)
- refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components
- style(pre-commit): autofix
- style(autoware_tensorrt_common): linting
* style(autoware_lidar_centerpoint): typo Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* docs(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_lidar_transfusion): reuse cast variable
- fix(autoware_tensorrt_common): remove deprecated inference API
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_tensorrt_common): const pointer
- fix(autoware_tensorrt_common): remove unused method declaration
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Name |
---|
libpcl-all-dev |
Dependant Packages
Name | Deps |
---|---|
tier4_perception_launch |
Launch files
- launch/lidar_apollo_instance_segmentation.launch.xml
-
- input/pointcloud [default: /sensing/lidar/pointcloud]
- model [default: model_128]
- output/objects [default: labeled_clusters]
- build_only [default: false]
- base_name [default: vlp-16]
- base_name [default: hdl-64]
- base_name [default: vls-128]
- data_path [default: $(env HOME)/autoware_data]
- trained_onnx_file [default: $(var data_path)/lidar_apollo_instance_segmentation/$(var base_name).onnx]
- param_file [default: $(find-pkg-share autoware_lidar_apollo_instance_segmentation)/config/$(var base_name).param.yaml]
- target_frame [default: base_link]
- z_offset [default: -2.0]
- precision [default: fp32]
Messages
Services
Plugins
Recent questions tagged autoware_lidar_apollo_instance_segmentation at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.47.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | |
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-08-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | planner ros calibration self-driving-car autonomous-driving autonomous-vehicles ros2 3d-map autoware |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- Yoshi Ri
- Yukihiro Saito
- Taekjin Lee
Authors
- Kosuke Takeuchi
- Yukihiro Saito
autoware_lidar_apollo_instance_segmentation
Purpose
This node segments 3D pointcloud data from lidar sensors into obstacles, e.g., cars, trucks, bicycles, and pedestrians based on CNN based model and obstacle clustering method.
Inner-workings / Algorithms
See the original design by Apollo.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/pointcloud |
sensor_msgs/PointCloud2 |
Pointcloud data from lidar sensors |
Output
Name | Type | Description |
---|---|---|
output/labeled_clusters |
tier4_perception_msgs/DetectedObjectsWithFeature |
Detected objects with labeled pointcloud cluster. |
debug/instance_pointcloud |
sensor_msgs/PointCloud2 |
Segmented pointcloud for visualization. |
Parameters
Node Parameters
None
Core Parameters
Name | Type | Default Value | Description |
---|---|---|---|
score_threshold |
double | 0.8 | If the score of a detected object is lower than this value, the object is ignored. |
range |
int | 60 | Half of the length of feature map sides. [m] |
width |
int | 640 | The grid width of feature map. |
height |
int | 640 | The grid height of feature map. |
engine_file |
string | “vls-128.engine” | The name of TensorRT engine file for CNN model. |
prototxt_file |
string | “vls-128.prototxt” | The name of prototxt file for CNN model. |
caffemodel_file |
string | “vls-128.caffemodel” | The name of caffemodel file for CNN model. |
use_intensity_feature |
bool | true | The flag to use intensity feature of pointcloud. |
use_constant_feature |
bool | false | The flag to use direction and distance feature of pointcloud. |
target_frame |
string | “base_link” | Pointcloud data is transformed into this frame. |
z_offset |
int | 2 | z offset from target frame. [m] |
build_only |
bool | false |
shutdown the node after TensorRT engine file is built |
Assumptions / Known limits
There is no training code for CNN model.
Note
This package makes use of three external codes. The trained files are provided by apollo. The trained files are automatically downloaded when you build.
Original URL
- VLP-16 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne16/deploy.caffemodel
- HDL-64 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne64/deploy.caffemodel
- VLS-128 : https://github.com/ApolloAuto/apollo/raw/91844c80ee4bd0cc838b4de4c625852363c258b5/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne128/deploy.caffemodel
Supported lidars are velodyne 16, 64 and 128, but you can also use velodyne 32 and other lidars with good accuracy.
/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
- tensorRTWrapper : It is used under the lib directory.
```txt MIT License
Copyright (c) 2018 lewes6369
Permission is hereby granted, free of charge, to any person obtaining a copy
File truncated at 100 lines see the full file
Changelog for package autoware_lidar_apollo_instance_segmentation
0.47.0 (2025-08-11)
0.46.0 (2025-06-20)
0.45.0 (2025-05-22)
-
Merge remote-tracking branch 'origin/main' into tmp/notbot/bump_version_base
-
chore: perception code owner update (#10645)
- chore: update maintainers in multiple perception packages
* Revert "chore: update maintainers in multiple perception packages" This reverts commit f2838c33d6cd82bd032039e2a12b9cb8ba6eb584.
- chore: update maintainers in multiple perception packages
* chore: add Kok Seang Tan as maintainer in multiple perception packages ---------
-
Contributors: Taekjin LEE, TaikiYamada4
0.44.2 (2025-06-10)
0.44.1 (2025-05-01)
0.44.0 (2025-04-18)
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- refactor: add autoware_cuda_dependency_meta (#10073)
- Contributors: Esteve Fernandez, Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_utils): replace autoware_universe_utils with autoware_utils (#10191)
- Contributors: Fumiya Watanabe, 心刚
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(autoware_lidar_apollo_instance_segmentation): tier4_debug_msgs to autoware_internal_debug_msgs in files perce… (#9876) feat: tier4_debug_msgs to autoware_internal_debug_msgs in files perception/autoware_lidar_apollo_instance_segmentation Co-authored-by: Ryohsuke Mitsudome <<43976834+mitsudome-r@users.noreply.github.com>>
-
refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components (#9762)
- refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components
- style(pre-commit): autofix
- style(autoware_tensorrt_common): linting
* style(autoware_lidar_centerpoint): typo Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* docs(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_lidar_transfusion): reuse cast variable
- fix(autoware_tensorrt_common): remove deprecated inference API
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_tensorrt_common): const pointer
- fix(autoware_tensorrt_common): remove unused method declaration
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Name |
---|
libpcl-all-dev |
Dependant Packages
Name | Deps |
---|---|
tier4_perception_launch |
Launch files
- launch/lidar_apollo_instance_segmentation.launch.xml
-
- input/pointcloud [default: /sensing/lidar/pointcloud]
- model [default: model_128]
- output/objects [default: labeled_clusters]
- build_only [default: false]
- base_name [default: vlp-16]
- base_name [default: hdl-64]
- base_name [default: vls-128]
- data_path [default: $(env HOME)/autoware_data]
- trained_onnx_file [default: $(var data_path)/lidar_apollo_instance_segmentation/$(var base_name).onnx]
- param_file [default: $(find-pkg-share autoware_lidar_apollo_instance_segmentation)/config/$(var base_name).param.yaml]
- target_frame [default: base_link]
- z_offset [default: -2.0]
- precision [default: fp32]
Messages
Services
Plugins
Recent questions tagged autoware_lidar_apollo_instance_segmentation at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.47.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | |
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-08-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | planner ros calibration self-driving-car autonomous-driving autonomous-vehicles ros2 3d-map autoware |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- Yoshi Ri
- Yukihiro Saito
- Taekjin Lee
Authors
- Kosuke Takeuchi
- Yukihiro Saito
autoware_lidar_apollo_instance_segmentation
Purpose
This node segments 3D pointcloud data from lidar sensors into obstacles, e.g., cars, trucks, bicycles, and pedestrians based on CNN based model and obstacle clustering method.
Inner-workings / Algorithms
See the original design by Apollo.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/pointcloud |
sensor_msgs/PointCloud2 |
Pointcloud data from lidar sensors |
Output
Name | Type | Description |
---|---|---|
output/labeled_clusters |
tier4_perception_msgs/DetectedObjectsWithFeature |
Detected objects with labeled pointcloud cluster. |
debug/instance_pointcloud |
sensor_msgs/PointCloud2 |
Segmented pointcloud for visualization. |
Parameters
Node Parameters
None
Core Parameters
Name | Type | Default Value | Description |
---|---|---|---|
score_threshold |
double | 0.8 | If the score of a detected object is lower than this value, the object is ignored. |
range |
int | 60 | Half of the length of feature map sides. [m] |
width |
int | 640 | The grid width of feature map. |
height |
int | 640 | The grid height of feature map. |
engine_file |
string | “vls-128.engine” | The name of TensorRT engine file for CNN model. |
prototxt_file |
string | “vls-128.prototxt” | The name of prototxt file for CNN model. |
caffemodel_file |
string | “vls-128.caffemodel” | The name of caffemodel file for CNN model. |
use_intensity_feature |
bool | true | The flag to use intensity feature of pointcloud. |
use_constant_feature |
bool | false | The flag to use direction and distance feature of pointcloud. |
target_frame |
string | “base_link” | Pointcloud data is transformed into this frame. |
z_offset |
int | 2 | z offset from target frame. [m] |
build_only |
bool | false |
shutdown the node after TensorRT engine file is built |
Assumptions / Known limits
There is no training code for CNN model.
Note
This package makes use of three external codes. The trained files are provided by apollo. The trained files are automatically downloaded when you build.
Original URL
- VLP-16 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne16/deploy.caffemodel
- HDL-64 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne64/deploy.caffemodel
- VLS-128 : https://github.com/ApolloAuto/apollo/raw/91844c80ee4bd0cc838b4de4c625852363c258b5/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne128/deploy.caffemodel
Supported lidars are velodyne 16, 64 and 128, but you can also use velodyne 32 and other lidars with good accuracy.
/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
- tensorRTWrapper : It is used under the lib directory.
```txt MIT License
Copyright (c) 2018 lewes6369
Permission is hereby granted, free of charge, to any person obtaining a copy
File truncated at 100 lines see the full file
Changelog for package autoware_lidar_apollo_instance_segmentation
0.47.0 (2025-08-11)
0.46.0 (2025-06-20)
0.45.0 (2025-05-22)
-
Merge remote-tracking branch 'origin/main' into tmp/notbot/bump_version_base
-
chore: perception code owner update (#10645)
- chore: update maintainers in multiple perception packages
* Revert "chore: update maintainers in multiple perception packages" This reverts commit f2838c33d6cd82bd032039e2a12b9cb8ba6eb584.
- chore: update maintainers in multiple perception packages
* chore: add Kok Seang Tan as maintainer in multiple perception packages ---------
-
Contributors: Taekjin LEE, TaikiYamada4
0.44.2 (2025-06-10)
0.44.1 (2025-05-01)
0.44.0 (2025-04-18)
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- refactor: add autoware_cuda_dependency_meta (#10073)
- Contributors: Esteve Fernandez, Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_utils): replace autoware_universe_utils with autoware_utils (#10191)
- Contributors: Fumiya Watanabe, 心刚
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(autoware_lidar_apollo_instance_segmentation): tier4_debug_msgs to autoware_internal_debug_msgs in files perce… (#9876) feat: tier4_debug_msgs to autoware_internal_debug_msgs in files perception/autoware_lidar_apollo_instance_segmentation Co-authored-by: Ryohsuke Mitsudome <<43976834+mitsudome-r@users.noreply.github.com>>
-
refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components (#9762)
- refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components
- style(pre-commit): autofix
- style(autoware_tensorrt_common): linting
* style(autoware_lidar_centerpoint): typo Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* docs(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_lidar_transfusion): reuse cast variable
- fix(autoware_tensorrt_common): remove deprecated inference API
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_tensorrt_common): const pointer
- fix(autoware_tensorrt_common): remove unused method declaration
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Name |
---|
libpcl-all-dev |
Dependant Packages
Name | Deps |
---|---|
tier4_perception_launch |
Launch files
- launch/lidar_apollo_instance_segmentation.launch.xml
-
- input/pointcloud [default: /sensing/lidar/pointcloud]
- model [default: model_128]
- output/objects [default: labeled_clusters]
- build_only [default: false]
- base_name [default: vlp-16]
- base_name [default: hdl-64]
- base_name [default: vls-128]
- data_path [default: $(env HOME)/autoware_data]
- trained_onnx_file [default: $(var data_path)/lidar_apollo_instance_segmentation/$(var base_name).onnx]
- param_file [default: $(find-pkg-share autoware_lidar_apollo_instance_segmentation)/config/$(var base_name).param.yaml]
- target_frame [default: base_link]
- z_offset [default: -2.0]
- precision [default: fp32]
Messages
Services
Plugins
Recent questions tagged autoware_lidar_apollo_instance_segmentation at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.47.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | |
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-08-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | planner ros calibration self-driving-car autonomous-driving autonomous-vehicles ros2 3d-map autoware |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- Yoshi Ri
- Yukihiro Saito
- Taekjin Lee
Authors
- Kosuke Takeuchi
- Yukihiro Saito
autoware_lidar_apollo_instance_segmentation
Purpose
This node segments 3D pointcloud data from lidar sensors into obstacles, e.g., cars, trucks, bicycles, and pedestrians based on CNN based model and obstacle clustering method.
Inner-workings / Algorithms
See the original design by Apollo.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/pointcloud |
sensor_msgs/PointCloud2 |
Pointcloud data from lidar sensors |
Output
Name | Type | Description |
---|---|---|
output/labeled_clusters |
tier4_perception_msgs/DetectedObjectsWithFeature |
Detected objects with labeled pointcloud cluster. |
debug/instance_pointcloud |
sensor_msgs/PointCloud2 |
Segmented pointcloud for visualization. |
Parameters
Node Parameters
None
Core Parameters
Name | Type | Default Value | Description |
---|---|---|---|
score_threshold |
double | 0.8 | If the score of a detected object is lower than this value, the object is ignored. |
range |
int | 60 | Half of the length of feature map sides. [m] |
width |
int | 640 | The grid width of feature map. |
height |
int | 640 | The grid height of feature map. |
engine_file |
string | “vls-128.engine” | The name of TensorRT engine file for CNN model. |
prototxt_file |
string | “vls-128.prototxt” | The name of prototxt file for CNN model. |
caffemodel_file |
string | “vls-128.caffemodel” | The name of caffemodel file for CNN model. |
use_intensity_feature |
bool | true | The flag to use intensity feature of pointcloud. |
use_constant_feature |
bool | false | The flag to use direction and distance feature of pointcloud. |
target_frame |
string | “base_link” | Pointcloud data is transformed into this frame. |
z_offset |
int | 2 | z offset from target frame. [m] |
build_only |
bool | false |
shutdown the node after TensorRT engine file is built |
Assumptions / Known limits
There is no training code for CNN model.
Note
This package makes use of three external codes. The trained files are provided by apollo. The trained files are automatically downloaded when you build.
Original URL
- VLP-16 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne16/deploy.caffemodel
- HDL-64 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne64/deploy.caffemodel
- VLS-128 : https://github.com/ApolloAuto/apollo/raw/91844c80ee4bd0cc838b4de4c625852363c258b5/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne128/deploy.caffemodel
Supported lidars are velodyne 16, 64 and 128, but you can also use velodyne 32 and other lidars with good accuracy.
/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
- tensorRTWrapper : It is used under the lib directory.
```txt MIT License
Copyright (c) 2018 lewes6369
Permission is hereby granted, free of charge, to any person obtaining a copy
File truncated at 100 lines see the full file
Changelog for package autoware_lidar_apollo_instance_segmentation
0.47.0 (2025-08-11)
0.46.0 (2025-06-20)
0.45.0 (2025-05-22)
-
Merge remote-tracking branch 'origin/main' into tmp/notbot/bump_version_base
-
chore: perception code owner update (#10645)
- chore: update maintainers in multiple perception packages
* Revert "chore: update maintainers in multiple perception packages" This reverts commit f2838c33d6cd82bd032039e2a12b9cb8ba6eb584.
- chore: update maintainers in multiple perception packages
* chore: add Kok Seang Tan as maintainer in multiple perception packages ---------
-
Contributors: Taekjin LEE, TaikiYamada4
0.44.2 (2025-06-10)
0.44.1 (2025-05-01)
0.44.0 (2025-04-18)
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- refactor: add autoware_cuda_dependency_meta (#10073)
- Contributors: Esteve Fernandez, Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_utils): replace autoware_universe_utils with autoware_utils (#10191)
- Contributors: Fumiya Watanabe, 心刚
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(autoware_lidar_apollo_instance_segmentation): tier4_debug_msgs to autoware_internal_debug_msgs in files perce… (#9876) feat: tier4_debug_msgs to autoware_internal_debug_msgs in files perception/autoware_lidar_apollo_instance_segmentation Co-authored-by: Ryohsuke Mitsudome <<43976834+mitsudome-r@users.noreply.github.com>>
-
refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components (#9762)
- refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components
- style(pre-commit): autofix
- style(autoware_tensorrt_common): linting
* style(autoware_lidar_centerpoint): typo Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* docs(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_lidar_transfusion): reuse cast variable
- fix(autoware_tensorrt_common): remove deprecated inference API
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_tensorrt_common): const pointer
- fix(autoware_tensorrt_common): remove unused method declaration
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Name |
---|
libpcl-all-dev |
Dependant Packages
Name | Deps |
---|---|
tier4_perception_launch |
Launch files
- launch/lidar_apollo_instance_segmentation.launch.xml
-
- input/pointcloud [default: /sensing/lidar/pointcloud]
- model [default: model_128]
- output/objects [default: labeled_clusters]
- build_only [default: false]
- base_name [default: vlp-16]
- base_name [default: hdl-64]
- base_name [default: vls-128]
- data_path [default: $(env HOME)/autoware_data]
- trained_onnx_file [default: $(var data_path)/lidar_apollo_instance_segmentation/$(var base_name).onnx]
- param_file [default: $(find-pkg-share autoware_lidar_apollo_instance_segmentation)/config/$(var base_name).param.yaml]
- target_frame [default: base_link]
- z_offset [default: -2.0]
- precision [default: fp32]
Messages
Services
Plugins
Recent questions tagged autoware_lidar_apollo_instance_segmentation at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.47.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | |
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-08-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | planner ros calibration self-driving-car autonomous-driving autonomous-vehicles ros2 3d-map autoware |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- Yoshi Ri
- Yukihiro Saito
- Taekjin Lee
Authors
- Kosuke Takeuchi
- Yukihiro Saito
autoware_lidar_apollo_instance_segmentation
Purpose
This node segments 3D pointcloud data from lidar sensors into obstacles, e.g., cars, trucks, bicycles, and pedestrians based on CNN based model and obstacle clustering method.
Inner-workings / Algorithms
See the original design by Apollo.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/pointcloud |
sensor_msgs/PointCloud2 |
Pointcloud data from lidar sensors |
Output
Name | Type | Description |
---|---|---|
output/labeled_clusters |
tier4_perception_msgs/DetectedObjectsWithFeature |
Detected objects with labeled pointcloud cluster. |
debug/instance_pointcloud |
sensor_msgs/PointCloud2 |
Segmented pointcloud for visualization. |
Parameters
Node Parameters
None
Core Parameters
Name | Type | Default Value | Description |
---|---|---|---|
score_threshold |
double | 0.8 | If the score of a detected object is lower than this value, the object is ignored. |
range |
int | 60 | Half of the length of feature map sides. [m] |
width |
int | 640 | The grid width of feature map. |
height |
int | 640 | The grid height of feature map. |
engine_file |
string | “vls-128.engine” | The name of TensorRT engine file for CNN model. |
prototxt_file |
string | “vls-128.prototxt” | The name of prototxt file for CNN model. |
caffemodel_file |
string | “vls-128.caffemodel” | The name of caffemodel file for CNN model. |
use_intensity_feature |
bool | true | The flag to use intensity feature of pointcloud. |
use_constant_feature |
bool | false | The flag to use direction and distance feature of pointcloud. |
target_frame |
string | “base_link” | Pointcloud data is transformed into this frame. |
z_offset |
int | 2 | z offset from target frame. [m] |
build_only |
bool | false |
shutdown the node after TensorRT engine file is built |
Assumptions / Known limits
There is no training code for CNN model.
Note
This package makes use of three external codes. The trained files are provided by apollo. The trained files are automatically downloaded when you build.
Original URL
- VLP-16 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne16/deploy.caffemodel
- HDL-64 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne64/deploy.caffemodel
- VLS-128 : https://github.com/ApolloAuto/apollo/raw/91844c80ee4bd0cc838b4de4c625852363c258b5/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne128/deploy.caffemodel
Supported lidars are velodyne 16, 64 and 128, but you can also use velodyne 32 and other lidars with good accuracy.
/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
- tensorRTWrapper : It is used under the lib directory.
```txt MIT License
Copyright (c) 2018 lewes6369
Permission is hereby granted, free of charge, to any person obtaining a copy
File truncated at 100 lines see the full file
Changelog for package autoware_lidar_apollo_instance_segmentation
0.47.0 (2025-08-11)
0.46.0 (2025-06-20)
0.45.0 (2025-05-22)
-
Merge remote-tracking branch 'origin/main' into tmp/notbot/bump_version_base
-
chore: perception code owner update (#10645)
- chore: update maintainers in multiple perception packages
* Revert "chore: update maintainers in multiple perception packages" This reverts commit f2838c33d6cd82bd032039e2a12b9cb8ba6eb584.
- chore: update maintainers in multiple perception packages
* chore: add Kok Seang Tan as maintainer in multiple perception packages ---------
-
Contributors: Taekjin LEE, TaikiYamada4
0.44.2 (2025-06-10)
0.44.1 (2025-05-01)
0.44.0 (2025-04-18)
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- refactor: add autoware_cuda_dependency_meta (#10073)
- Contributors: Esteve Fernandez, Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_utils): replace autoware_universe_utils with autoware_utils (#10191)
- Contributors: Fumiya Watanabe, 心刚
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(autoware_lidar_apollo_instance_segmentation): tier4_debug_msgs to autoware_internal_debug_msgs in files perce… (#9876) feat: tier4_debug_msgs to autoware_internal_debug_msgs in files perception/autoware_lidar_apollo_instance_segmentation Co-authored-by: Ryohsuke Mitsudome <<43976834+mitsudome-r@users.noreply.github.com>>
-
refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components (#9762)
- refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components
- style(pre-commit): autofix
- style(autoware_tensorrt_common): linting
* style(autoware_lidar_centerpoint): typo Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* docs(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_lidar_transfusion): reuse cast variable
- fix(autoware_tensorrt_common): remove deprecated inference API
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_tensorrt_common): const pointer
- fix(autoware_tensorrt_common): remove unused method declaration
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Name |
---|
libpcl-all-dev |
Dependant Packages
Name | Deps |
---|---|
tier4_perception_launch |
Launch files
- launch/lidar_apollo_instance_segmentation.launch.xml
-
- input/pointcloud [default: /sensing/lidar/pointcloud]
- model [default: model_128]
- output/objects [default: labeled_clusters]
- build_only [default: false]
- base_name [default: vlp-16]
- base_name [default: hdl-64]
- base_name [default: vls-128]
- data_path [default: $(env HOME)/autoware_data]
- trained_onnx_file [default: $(var data_path)/lidar_apollo_instance_segmentation/$(var base_name).onnx]
- param_file [default: $(find-pkg-share autoware_lidar_apollo_instance_segmentation)/config/$(var base_name).param.yaml]
- target_frame [default: base_link]
- z_offset [default: -2.0]
- precision [default: fp32]
Messages
Services
Plugins
Recent questions tagged autoware_lidar_apollo_instance_segmentation at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.47.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | |
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-08-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | planner ros calibration self-driving-car autonomous-driving autonomous-vehicles ros2 3d-map autoware |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- Yoshi Ri
- Yukihiro Saito
- Taekjin Lee
Authors
- Kosuke Takeuchi
- Yukihiro Saito
autoware_lidar_apollo_instance_segmentation
Purpose
This node segments 3D pointcloud data from lidar sensors into obstacles, e.g., cars, trucks, bicycles, and pedestrians based on CNN based model and obstacle clustering method.
Inner-workings / Algorithms
See the original design by Apollo.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/pointcloud |
sensor_msgs/PointCloud2 |
Pointcloud data from lidar sensors |
Output
Name | Type | Description |
---|---|---|
output/labeled_clusters |
tier4_perception_msgs/DetectedObjectsWithFeature |
Detected objects with labeled pointcloud cluster. |
debug/instance_pointcloud |
sensor_msgs/PointCloud2 |
Segmented pointcloud for visualization. |
Parameters
Node Parameters
None
Core Parameters
Name | Type | Default Value | Description |
---|---|---|---|
score_threshold |
double | 0.8 | If the score of a detected object is lower than this value, the object is ignored. |
range |
int | 60 | Half of the length of feature map sides. [m] |
width |
int | 640 | The grid width of feature map. |
height |
int | 640 | The grid height of feature map. |
engine_file |
string | “vls-128.engine” | The name of TensorRT engine file for CNN model. |
prototxt_file |
string | “vls-128.prototxt” | The name of prototxt file for CNN model. |
caffemodel_file |
string | “vls-128.caffemodel” | The name of caffemodel file for CNN model. |
use_intensity_feature |
bool | true | The flag to use intensity feature of pointcloud. |
use_constant_feature |
bool | false | The flag to use direction and distance feature of pointcloud. |
target_frame |
string | “base_link” | Pointcloud data is transformed into this frame. |
z_offset |
int | 2 | z offset from target frame. [m] |
build_only |
bool | false |
shutdown the node after TensorRT engine file is built |
Assumptions / Known limits
There is no training code for CNN model.
Note
This package makes use of three external codes. The trained files are provided by apollo. The trained files are automatically downloaded when you build.
Original URL
- VLP-16 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne16/deploy.caffemodel
- HDL-64 : https://github.com/ApolloAuto/apollo/raw/88bfa5a1acbd20092963d6057f3a922f3939a183/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne64/deploy.caffemodel
- VLS-128 : https://github.com/ApolloAuto/apollo/raw/91844c80ee4bd0cc838b4de4c625852363c258b5/modules/perception/production/data/perception/lidar/models/cnnseg/velodyne128/deploy.caffemodel
Supported lidars are velodyne 16, 64 and 128, but you can also use velodyne 32 and other lidars with good accuracy.
/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
- tensorRTWrapper : It is used under the lib directory.
```txt MIT License
Copyright (c) 2018 lewes6369
Permission is hereby granted, free of charge, to any person obtaining a copy
File truncated at 100 lines see the full file
Changelog for package autoware_lidar_apollo_instance_segmentation
0.47.0 (2025-08-11)
0.46.0 (2025-06-20)
0.45.0 (2025-05-22)
-
Merge remote-tracking branch 'origin/main' into tmp/notbot/bump_version_base
-
chore: perception code owner update (#10645)
- chore: update maintainers in multiple perception packages
* Revert "chore: update maintainers in multiple perception packages" This reverts commit f2838c33d6cd82bd032039e2a12b9cb8ba6eb584.
- chore: update maintainers in multiple perception packages
* chore: add Kok Seang Tan as maintainer in multiple perception packages ---------
-
Contributors: Taekjin LEE, TaikiYamada4
0.44.2 (2025-06-10)
0.44.1 (2025-05-01)
0.44.0 (2025-04-18)
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- refactor: add autoware_cuda_dependency_meta (#10073)
- Contributors: Esteve Fernandez, Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_utils): replace autoware_universe_utils with autoware_utils (#10191)
- Contributors: Fumiya Watanabe, 心刚
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(autoware_lidar_apollo_instance_segmentation): tier4_debug_msgs to autoware_internal_debug_msgs in files perce… (#9876) feat: tier4_debug_msgs to autoware_internal_debug_msgs in files perception/autoware_lidar_apollo_instance_segmentation Co-authored-by: Ryohsuke Mitsudome <<43976834+mitsudome-r@users.noreply.github.com>>
-
refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components (#9762)
- refactor(autoware_tensorrt_common): multi-TensorRT compatibility & tensorrt_common as unified lib for all perception components
- style(pre-commit): autofix
- style(autoware_tensorrt_common): linting
* style(autoware_lidar_centerpoint): typo Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* docs(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_lidar_transfusion): reuse cast variable
- fix(autoware_tensorrt_common): remove deprecated inference API
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
* style(autoware_tensorrt_common): grammar Co-authored-by: Kenzo Lobos Tsunekawa <<kenzo.lobos@tier4.jp>>
- fix(autoware_tensorrt_common): const pointer
- fix(autoware_tensorrt_common): remove unused method declaration
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Name |
---|
libpcl-all-dev |
Dependant Packages
Name | Deps |
---|---|
tier4_perception_launch |
Launch files
- launch/lidar_apollo_instance_segmentation.launch.xml
-
- input/pointcloud [default: /sensing/lidar/pointcloud]
- model [default: model_128]
- output/objects [default: labeled_clusters]
- build_only [default: false]
- base_name [default: vlp-16]
- base_name [default: hdl-64]
- base_name [default: vls-128]
- data_path [default: $(env HOME)/autoware_data]
- trained_onnx_file [default: $(var data_path)/lidar_apollo_instance_segmentation/$(var base_name).onnx]
- param_file [default: $(find-pkg-share autoware_lidar_apollo_instance_segmentation)/config/$(var base_name).param.yaml]
- target_frame [default: base_link]
- z_offset [default: -2.0]
- precision [default: fp32]