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
- Kento Yabuuchi
- Masahiro Sakamoto
- Yamato Ando
- NGUYEN Viet Anh
- Taiki Yamada
- Shintaro Sakoda
- Ryu Yamamoto
Authors
yabloc_image_processing
This package contains some executable nodes related to image processing.
- line_segment_detector
- graph_segmentation
- segment_filter
- undistort
- lanelet2_overlay
- line_segments_overlay
line_segment_detector
Purpose
This node extract all line segments from gray scale image.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/image_with_line_segments |
sensor_msgs::msg::Image |
image with line segments highlighted |
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segments as point cloud. each point contains x,y,z, normal_x, normal_y, normal_z and z, and normal_z are always empty. |
graph_segmentation
Purpose
This node extract road surface region by graph-based-segmentation.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
output/segmented_image |
sensor_msgs::msg::Image |
segmented image for visualization |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/graph_segment.schema.json”) }}
segment_filter
Purpose
This is a node that integrates the results of graph_segment and lsd to extract road surface markings.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segment |
input/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
input/camera_info |
sensor_msgs::msg::CameraInfo |
undistorted camera info |
Output
Name | Type | Description |
---|---|---|
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
filtered line segments for visualization |
output/projected_image |
sensor_msgs::msg::Image |
projected filtered line segments for visualization |
output/projected_line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
projected filtered line segments |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/segment_filter.schema.json”) }}
undistort
Purpose
This node performs image resizing and undistortion at the same time.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/camera_info |
sensor_msgs::msg::CameraInfo |
camera info |
input/image_raw |
sensor_msgs::msg::Image |
raw camera image |
input/image_raw/compressed |
sensor_msgs::msg::CompressedImage |
compressed camera image |
File truncated at 100 lines see the full file
Changelog for package yabloc_image_processing
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
- fix(yabloc_image_processing): fix deprecated autoware_utils header (#10495)
- Contributors: Masaki Baba, 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)
- Contributors: 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)
0.40.0 (2024-12-12)
-
Merge branch 'main' into release-0.40.0
-
Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
chore(package.xml): bump version to 0.39.0 (#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
fix(cpplint): include what you use - localization (#9567)
-
0.39.0
-
update changelog
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
chore(package.xml): bump version to 0.38.0 (#9266) (#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
-
Contributors: Esteve Fernandez, Fumiya Watanabe, M. Fatih Cırıt, Ryohsuke Mitsudome, Yutaka Kondo
0.39.0 (2024-11-25)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Dependant Packages
Launch files
- launch/image_processing.launch.xml
-
- src_image [default: /sensing/camera/traffic_light/image_raw]
- src_info [default: /sensing/camera/traffic_light/camera_info]
- resized_image [default: /sensing/camera/undistorted/image_raw]
- resized_info [default: /sensing/camera/undistorted/camera_info]
- output_image_with_line_segments [default: image_with_line_segments]
- output_line_segments_cloud [default: line_segments_cloud]
- output_graph_segmented [default: graph_segmented]
- output_segmented_image [default: segmented_image]
- input_graph_segmented [default: graph_segmented]
- input_line_segments_cloud [default: line_segments_cloud]
- output_projected_line_segments_cloud [default: projected_line_segments_cloud]
- output_projected_image [default: projected_image]
- output_debug_line_segments [default: debug/line_segments_cloud]
- launch/overlay.launch.xml
-
- input_overlaid_pose
- output_image_with_colored_line_segments [default: image_with_colored_line_segments]
- resized_image
- resized_info
- launch/yabloc_image_processing.launch.xml
-
- src_image
- src_info
- resized_image [default: undistorted/image_raw]
- resized_info [default: undistorted/camera_info]
- input_pose [default: undistorted]
- validation [default: true]
Messages
Services
Plugins
Recent questions tagged yabloc_image_processing 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
- Kento Yabuuchi
- Masahiro Sakamoto
- Yamato Ando
- NGUYEN Viet Anh
- Taiki Yamada
- Shintaro Sakoda
- Ryu Yamamoto
Authors
yabloc_image_processing
This package contains some executable nodes related to image processing.
- line_segment_detector
- graph_segmentation
- segment_filter
- undistort
- lanelet2_overlay
- line_segments_overlay
line_segment_detector
Purpose
This node extract all line segments from gray scale image.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/image_with_line_segments |
sensor_msgs::msg::Image |
image with line segments highlighted |
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segments as point cloud. each point contains x,y,z, normal_x, normal_y, normal_z and z, and normal_z are always empty. |
graph_segmentation
Purpose
This node extract road surface region by graph-based-segmentation.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
output/segmented_image |
sensor_msgs::msg::Image |
segmented image for visualization |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/graph_segment.schema.json”) }}
segment_filter
Purpose
This is a node that integrates the results of graph_segment and lsd to extract road surface markings.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segment |
input/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
input/camera_info |
sensor_msgs::msg::CameraInfo |
undistorted camera info |
Output
Name | Type | Description |
---|---|---|
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
filtered line segments for visualization |
output/projected_image |
sensor_msgs::msg::Image |
projected filtered line segments for visualization |
output/projected_line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
projected filtered line segments |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/segment_filter.schema.json”) }}
undistort
Purpose
This node performs image resizing and undistortion at the same time.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/camera_info |
sensor_msgs::msg::CameraInfo |
camera info |
input/image_raw |
sensor_msgs::msg::Image |
raw camera image |
input/image_raw/compressed |
sensor_msgs::msg::CompressedImage |
compressed camera image |
File truncated at 100 lines see the full file
Changelog for package yabloc_image_processing
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
- fix(yabloc_image_processing): fix deprecated autoware_utils header (#10495)
- Contributors: Masaki Baba, 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)
- Contributors: 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)
0.40.0 (2024-12-12)
-
Merge branch 'main' into release-0.40.0
-
Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
chore(package.xml): bump version to 0.39.0 (#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
fix(cpplint): include what you use - localization (#9567)
-
0.39.0
-
update changelog
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
chore(package.xml): bump version to 0.38.0 (#9266) (#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
-
Contributors: Esteve Fernandez, Fumiya Watanabe, M. Fatih Cırıt, Ryohsuke Mitsudome, Yutaka Kondo
0.39.0 (2024-11-25)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Dependant Packages
Launch files
- launch/image_processing.launch.xml
-
- src_image [default: /sensing/camera/traffic_light/image_raw]
- src_info [default: /sensing/camera/traffic_light/camera_info]
- resized_image [default: /sensing/camera/undistorted/image_raw]
- resized_info [default: /sensing/camera/undistorted/camera_info]
- output_image_with_line_segments [default: image_with_line_segments]
- output_line_segments_cloud [default: line_segments_cloud]
- output_graph_segmented [default: graph_segmented]
- output_segmented_image [default: segmented_image]
- input_graph_segmented [default: graph_segmented]
- input_line_segments_cloud [default: line_segments_cloud]
- output_projected_line_segments_cloud [default: projected_line_segments_cloud]
- output_projected_image [default: projected_image]
- output_debug_line_segments [default: debug/line_segments_cloud]
- launch/overlay.launch.xml
-
- input_overlaid_pose
- output_image_with_colored_line_segments [default: image_with_colored_line_segments]
- resized_image
- resized_info
- launch/yabloc_image_processing.launch.xml
-
- src_image
- src_info
- resized_image [default: undistorted/image_raw]
- resized_info [default: undistorted/camera_info]
- input_pose [default: undistorted]
- validation [default: true]
Messages
Services
Plugins
Recent questions tagged yabloc_image_processing 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
- Kento Yabuuchi
- Masahiro Sakamoto
- Yamato Ando
- NGUYEN Viet Anh
- Taiki Yamada
- Shintaro Sakoda
- Ryu Yamamoto
Authors
yabloc_image_processing
This package contains some executable nodes related to image processing.
- line_segment_detector
- graph_segmentation
- segment_filter
- undistort
- lanelet2_overlay
- line_segments_overlay
line_segment_detector
Purpose
This node extract all line segments from gray scale image.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/image_with_line_segments |
sensor_msgs::msg::Image |
image with line segments highlighted |
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segments as point cloud. each point contains x,y,z, normal_x, normal_y, normal_z and z, and normal_z are always empty. |
graph_segmentation
Purpose
This node extract road surface region by graph-based-segmentation.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
output/segmented_image |
sensor_msgs::msg::Image |
segmented image for visualization |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/graph_segment.schema.json”) }}
segment_filter
Purpose
This is a node that integrates the results of graph_segment and lsd to extract road surface markings.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segment |
input/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
input/camera_info |
sensor_msgs::msg::CameraInfo |
undistorted camera info |
Output
Name | Type | Description |
---|---|---|
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
filtered line segments for visualization |
output/projected_image |
sensor_msgs::msg::Image |
projected filtered line segments for visualization |
output/projected_line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
projected filtered line segments |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/segment_filter.schema.json”) }}
undistort
Purpose
This node performs image resizing and undistortion at the same time.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/camera_info |
sensor_msgs::msg::CameraInfo |
camera info |
input/image_raw |
sensor_msgs::msg::Image |
raw camera image |
input/image_raw/compressed |
sensor_msgs::msg::CompressedImage |
compressed camera image |
File truncated at 100 lines see the full file
Changelog for package yabloc_image_processing
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
- fix(yabloc_image_processing): fix deprecated autoware_utils header (#10495)
- Contributors: Masaki Baba, 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)
- Contributors: 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)
0.40.0 (2024-12-12)
-
Merge branch 'main' into release-0.40.0
-
Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
chore(package.xml): bump version to 0.39.0 (#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
fix(cpplint): include what you use - localization (#9567)
-
0.39.0
-
update changelog
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
chore(package.xml): bump version to 0.38.0 (#9266) (#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
-
Contributors: Esteve Fernandez, Fumiya Watanabe, M. Fatih Cırıt, Ryohsuke Mitsudome, Yutaka Kondo
0.39.0 (2024-11-25)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Dependant Packages
Launch files
- launch/image_processing.launch.xml
-
- src_image [default: /sensing/camera/traffic_light/image_raw]
- src_info [default: /sensing/camera/traffic_light/camera_info]
- resized_image [default: /sensing/camera/undistorted/image_raw]
- resized_info [default: /sensing/camera/undistorted/camera_info]
- output_image_with_line_segments [default: image_with_line_segments]
- output_line_segments_cloud [default: line_segments_cloud]
- output_graph_segmented [default: graph_segmented]
- output_segmented_image [default: segmented_image]
- input_graph_segmented [default: graph_segmented]
- input_line_segments_cloud [default: line_segments_cloud]
- output_projected_line_segments_cloud [default: projected_line_segments_cloud]
- output_projected_image [default: projected_image]
- output_debug_line_segments [default: debug/line_segments_cloud]
- launch/overlay.launch.xml
-
- input_overlaid_pose
- output_image_with_colored_line_segments [default: image_with_colored_line_segments]
- resized_image
- resized_info
- launch/yabloc_image_processing.launch.xml
-
- src_image
- src_info
- resized_image [default: undistorted/image_raw]
- resized_info [default: undistorted/camera_info]
- input_pose [default: undistorted]
- validation [default: true]
Messages
Services
Plugins
Recent questions tagged yabloc_image_processing 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
- Kento Yabuuchi
- Masahiro Sakamoto
- Yamato Ando
- NGUYEN Viet Anh
- Taiki Yamada
- Shintaro Sakoda
- Ryu Yamamoto
Authors
yabloc_image_processing
This package contains some executable nodes related to image processing.
- line_segment_detector
- graph_segmentation
- segment_filter
- undistort
- lanelet2_overlay
- line_segments_overlay
line_segment_detector
Purpose
This node extract all line segments from gray scale image.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/image_with_line_segments |
sensor_msgs::msg::Image |
image with line segments highlighted |
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segments as point cloud. each point contains x,y,z, normal_x, normal_y, normal_z and z, and normal_z are always empty. |
graph_segmentation
Purpose
This node extract road surface region by graph-based-segmentation.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
output/segmented_image |
sensor_msgs::msg::Image |
segmented image for visualization |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/graph_segment.schema.json”) }}
segment_filter
Purpose
This is a node that integrates the results of graph_segment and lsd to extract road surface markings.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segment |
input/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
input/camera_info |
sensor_msgs::msg::CameraInfo |
undistorted camera info |
Output
Name | Type | Description |
---|---|---|
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
filtered line segments for visualization |
output/projected_image |
sensor_msgs::msg::Image |
projected filtered line segments for visualization |
output/projected_line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
projected filtered line segments |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/segment_filter.schema.json”) }}
undistort
Purpose
This node performs image resizing and undistortion at the same time.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/camera_info |
sensor_msgs::msg::CameraInfo |
camera info |
input/image_raw |
sensor_msgs::msg::Image |
raw camera image |
input/image_raw/compressed |
sensor_msgs::msg::CompressedImage |
compressed camera image |
File truncated at 100 lines see the full file
Changelog for package yabloc_image_processing
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
- fix(yabloc_image_processing): fix deprecated autoware_utils header (#10495)
- Contributors: Masaki Baba, 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)
- Contributors: 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)
0.40.0 (2024-12-12)
-
Merge branch 'main' into release-0.40.0
-
Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
chore(package.xml): bump version to 0.39.0 (#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
fix(cpplint): include what you use - localization (#9567)
-
0.39.0
-
update changelog
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
chore(package.xml): bump version to 0.38.0 (#9266) (#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
-
Contributors: Esteve Fernandez, Fumiya Watanabe, M. Fatih Cırıt, Ryohsuke Mitsudome, Yutaka Kondo
0.39.0 (2024-11-25)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Dependant Packages
Launch files
- launch/image_processing.launch.xml
-
- src_image [default: /sensing/camera/traffic_light/image_raw]
- src_info [default: /sensing/camera/traffic_light/camera_info]
- resized_image [default: /sensing/camera/undistorted/image_raw]
- resized_info [default: /sensing/camera/undistorted/camera_info]
- output_image_with_line_segments [default: image_with_line_segments]
- output_line_segments_cloud [default: line_segments_cloud]
- output_graph_segmented [default: graph_segmented]
- output_segmented_image [default: segmented_image]
- input_graph_segmented [default: graph_segmented]
- input_line_segments_cloud [default: line_segments_cloud]
- output_projected_line_segments_cloud [default: projected_line_segments_cloud]
- output_projected_image [default: projected_image]
- output_debug_line_segments [default: debug/line_segments_cloud]
- launch/overlay.launch.xml
-
- input_overlaid_pose
- output_image_with_colored_line_segments [default: image_with_colored_line_segments]
- resized_image
- resized_info
- launch/yabloc_image_processing.launch.xml
-
- src_image
- src_info
- resized_image [default: undistorted/image_raw]
- resized_info [default: undistorted/camera_info]
- input_pose [default: undistorted]
- validation [default: true]
Messages
Services
Plugins
Recent questions tagged yabloc_image_processing 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
- Kento Yabuuchi
- Masahiro Sakamoto
- Yamato Ando
- NGUYEN Viet Anh
- Taiki Yamada
- Shintaro Sakoda
- Ryu Yamamoto
Authors
yabloc_image_processing
This package contains some executable nodes related to image processing.
- line_segment_detector
- graph_segmentation
- segment_filter
- undistort
- lanelet2_overlay
- line_segments_overlay
line_segment_detector
Purpose
This node extract all line segments from gray scale image.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/image_with_line_segments |
sensor_msgs::msg::Image |
image with line segments highlighted |
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segments as point cloud. each point contains x,y,z, normal_x, normal_y, normal_z and z, and normal_z are always empty. |
graph_segmentation
Purpose
This node extract road surface region by graph-based-segmentation.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
output/segmented_image |
sensor_msgs::msg::Image |
segmented image for visualization |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/graph_segment.schema.json”) }}
segment_filter
Purpose
This is a node that integrates the results of graph_segment and lsd to extract road surface markings.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segment |
input/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
input/camera_info |
sensor_msgs::msg::CameraInfo |
undistorted camera info |
Output
Name | Type | Description |
---|---|---|
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
filtered line segments for visualization |
output/projected_image |
sensor_msgs::msg::Image |
projected filtered line segments for visualization |
output/projected_line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
projected filtered line segments |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/segment_filter.schema.json”) }}
undistort
Purpose
This node performs image resizing and undistortion at the same time.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/camera_info |
sensor_msgs::msg::CameraInfo |
camera info |
input/image_raw |
sensor_msgs::msg::Image |
raw camera image |
input/image_raw/compressed |
sensor_msgs::msg::CompressedImage |
compressed camera image |
File truncated at 100 lines see the full file
Changelog for package yabloc_image_processing
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
- fix(yabloc_image_processing): fix deprecated autoware_utils header (#10495)
- Contributors: Masaki Baba, 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)
- Contributors: 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)
0.40.0 (2024-12-12)
-
Merge branch 'main' into release-0.40.0
-
Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
chore(package.xml): bump version to 0.39.0 (#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
fix(cpplint): include what you use - localization (#9567)
-
0.39.0
-
update changelog
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
chore(package.xml): bump version to 0.38.0 (#9266) (#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
-
Contributors: Esteve Fernandez, Fumiya Watanabe, M. Fatih Cırıt, Ryohsuke Mitsudome, Yutaka Kondo
0.39.0 (2024-11-25)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Dependant Packages
Launch files
- launch/image_processing.launch.xml
-
- src_image [default: /sensing/camera/traffic_light/image_raw]
- src_info [default: /sensing/camera/traffic_light/camera_info]
- resized_image [default: /sensing/camera/undistorted/image_raw]
- resized_info [default: /sensing/camera/undistorted/camera_info]
- output_image_with_line_segments [default: image_with_line_segments]
- output_line_segments_cloud [default: line_segments_cloud]
- output_graph_segmented [default: graph_segmented]
- output_segmented_image [default: segmented_image]
- input_graph_segmented [default: graph_segmented]
- input_line_segments_cloud [default: line_segments_cloud]
- output_projected_line_segments_cloud [default: projected_line_segments_cloud]
- output_projected_image [default: projected_image]
- output_debug_line_segments [default: debug/line_segments_cloud]
- launch/overlay.launch.xml
-
- input_overlaid_pose
- output_image_with_colored_line_segments [default: image_with_colored_line_segments]
- resized_image
- resized_info
- launch/yabloc_image_processing.launch.xml
-
- src_image
- src_info
- resized_image [default: undistorted/image_raw]
- resized_info [default: undistorted/camera_info]
- input_pose [default: undistorted]
- validation [default: true]
Messages
Services
Plugins
Recent questions tagged yabloc_image_processing 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
- Kento Yabuuchi
- Masahiro Sakamoto
- Yamato Ando
- NGUYEN Viet Anh
- Taiki Yamada
- Shintaro Sakoda
- Ryu Yamamoto
Authors
yabloc_image_processing
This package contains some executable nodes related to image processing.
- line_segment_detector
- graph_segmentation
- segment_filter
- undistort
- lanelet2_overlay
- line_segments_overlay
line_segment_detector
Purpose
This node extract all line segments from gray scale image.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/image_with_line_segments |
sensor_msgs::msg::Image |
image with line segments highlighted |
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segments as point cloud. each point contains x,y,z, normal_x, normal_y, normal_z and z, and normal_z are always empty. |
graph_segmentation
Purpose
This node extract road surface region by graph-based-segmentation.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
output/segmented_image |
sensor_msgs::msg::Image |
segmented image for visualization |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/graph_segment.schema.json”) }}
segment_filter
Purpose
This is a node that integrates the results of graph_segment and lsd to extract road surface markings.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segment |
input/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
input/camera_info |
sensor_msgs::msg::CameraInfo |
undistorted camera info |
Output
Name | Type | Description |
---|---|---|
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
filtered line segments for visualization |
output/projected_image |
sensor_msgs::msg::Image |
projected filtered line segments for visualization |
output/projected_line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
projected filtered line segments |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/segment_filter.schema.json”) }}
undistort
Purpose
This node performs image resizing and undistortion at the same time.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/camera_info |
sensor_msgs::msg::CameraInfo |
camera info |
input/image_raw |
sensor_msgs::msg::Image |
raw camera image |
input/image_raw/compressed |
sensor_msgs::msg::CompressedImage |
compressed camera image |
File truncated at 100 lines see the full file
Changelog for package yabloc_image_processing
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
- fix(yabloc_image_processing): fix deprecated autoware_utils header (#10495)
- Contributors: Masaki Baba, 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)
- Contributors: 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)
0.40.0 (2024-12-12)
-
Merge branch 'main' into release-0.40.0
-
Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
chore(package.xml): bump version to 0.39.0 (#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
fix(cpplint): include what you use - localization (#9567)
-
0.39.0
-
update changelog
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
chore(package.xml): bump version to 0.38.0 (#9266) (#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
-
Contributors: Esteve Fernandez, Fumiya Watanabe, M. Fatih Cırıt, Ryohsuke Mitsudome, Yutaka Kondo
0.39.0 (2024-11-25)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Dependant Packages
Launch files
- launch/image_processing.launch.xml
-
- src_image [default: /sensing/camera/traffic_light/image_raw]
- src_info [default: /sensing/camera/traffic_light/camera_info]
- resized_image [default: /sensing/camera/undistorted/image_raw]
- resized_info [default: /sensing/camera/undistorted/camera_info]
- output_image_with_line_segments [default: image_with_line_segments]
- output_line_segments_cloud [default: line_segments_cloud]
- output_graph_segmented [default: graph_segmented]
- output_segmented_image [default: segmented_image]
- input_graph_segmented [default: graph_segmented]
- input_line_segments_cloud [default: line_segments_cloud]
- output_projected_line_segments_cloud [default: projected_line_segments_cloud]
- output_projected_image [default: projected_image]
- output_debug_line_segments [default: debug/line_segments_cloud]
- launch/overlay.launch.xml
-
- input_overlaid_pose
- output_image_with_colored_line_segments [default: image_with_colored_line_segments]
- resized_image
- resized_info
- launch/yabloc_image_processing.launch.xml
-
- src_image
- src_info
- resized_image [default: undistorted/image_raw]
- resized_info [default: undistorted/camera_info]
- input_pose [default: undistorted]
- validation [default: true]
Messages
Services
Plugins
Recent questions tagged yabloc_image_processing 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
- Kento Yabuuchi
- Masahiro Sakamoto
- Yamato Ando
- NGUYEN Viet Anh
- Taiki Yamada
- Shintaro Sakoda
- Ryu Yamamoto
Authors
yabloc_image_processing
This package contains some executable nodes related to image processing.
- line_segment_detector
- graph_segmentation
- segment_filter
- undistort
- lanelet2_overlay
- line_segments_overlay
line_segment_detector
Purpose
This node extract all line segments from gray scale image.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/image_with_line_segments |
sensor_msgs::msg::Image |
image with line segments highlighted |
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segments as point cloud. each point contains x,y,z, normal_x, normal_y, normal_z and z, and normal_z are always empty. |
graph_segmentation
Purpose
This node extract road surface region by graph-based-segmentation.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
output/segmented_image |
sensor_msgs::msg::Image |
segmented image for visualization |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/graph_segment.schema.json”) }}
segment_filter
Purpose
This is a node that integrates the results of graph_segment and lsd to extract road surface markings.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segment |
input/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
input/camera_info |
sensor_msgs::msg::CameraInfo |
undistorted camera info |
Output
Name | Type | Description |
---|---|---|
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
filtered line segments for visualization |
output/projected_image |
sensor_msgs::msg::Image |
projected filtered line segments for visualization |
output/projected_line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
projected filtered line segments |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/segment_filter.schema.json”) }}
undistort
Purpose
This node performs image resizing and undistortion at the same time.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/camera_info |
sensor_msgs::msg::CameraInfo |
camera info |
input/image_raw |
sensor_msgs::msg::Image |
raw camera image |
input/image_raw/compressed |
sensor_msgs::msg::CompressedImage |
compressed camera image |
File truncated at 100 lines see the full file
Changelog for package yabloc_image_processing
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
- fix(yabloc_image_processing): fix deprecated autoware_utils header (#10495)
- Contributors: Masaki Baba, 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)
- Contributors: 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)
0.40.0 (2024-12-12)
-
Merge branch 'main' into release-0.40.0
-
Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
chore(package.xml): bump version to 0.39.0 (#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
fix(cpplint): include what you use - localization (#9567)
-
0.39.0
-
update changelog
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
chore(package.xml): bump version to 0.38.0 (#9266) (#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
-
Contributors: Esteve Fernandez, Fumiya Watanabe, M. Fatih Cırıt, Ryohsuke Mitsudome, Yutaka Kondo
0.39.0 (2024-11-25)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Dependant Packages
Launch files
- launch/image_processing.launch.xml
-
- src_image [default: /sensing/camera/traffic_light/image_raw]
- src_info [default: /sensing/camera/traffic_light/camera_info]
- resized_image [default: /sensing/camera/undistorted/image_raw]
- resized_info [default: /sensing/camera/undistorted/camera_info]
- output_image_with_line_segments [default: image_with_line_segments]
- output_line_segments_cloud [default: line_segments_cloud]
- output_graph_segmented [default: graph_segmented]
- output_segmented_image [default: segmented_image]
- input_graph_segmented [default: graph_segmented]
- input_line_segments_cloud [default: line_segments_cloud]
- output_projected_line_segments_cloud [default: projected_line_segments_cloud]
- output_projected_image [default: projected_image]
- output_debug_line_segments [default: debug/line_segments_cloud]
- launch/overlay.launch.xml
-
- input_overlaid_pose
- output_image_with_colored_line_segments [default: image_with_colored_line_segments]
- resized_image
- resized_info
- launch/yabloc_image_processing.launch.xml
-
- src_image
- src_info
- resized_image [default: undistorted/image_raw]
- resized_info [default: undistorted/camera_info]
- input_pose [default: undistorted]
- validation [default: true]
Messages
Services
Plugins
Recent questions tagged yabloc_image_processing 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
- Kento Yabuuchi
- Masahiro Sakamoto
- Yamato Ando
- NGUYEN Viet Anh
- Taiki Yamada
- Shintaro Sakoda
- Ryu Yamamoto
Authors
yabloc_image_processing
This package contains some executable nodes related to image processing.
- line_segment_detector
- graph_segmentation
- segment_filter
- undistort
- lanelet2_overlay
- line_segments_overlay
line_segment_detector
Purpose
This node extract all line segments from gray scale image.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/image_with_line_segments |
sensor_msgs::msg::Image |
image with line segments highlighted |
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segments as point cloud. each point contains x,y,z, normal_x, normal_y, normal_z and z, and normal_z are always empty. |
graph_segmentation
Purpose
This node extract road surface region by graph-based-segmentation.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
output/segmented_image |
sensor_msgs::msg::Image |
segmented image for visualization |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/graph_segment.schema.json”) }}
segment_filter
Purpose
This is a node that integrates the results of graph_segment and lsd to extract road surface markings.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segment |
input/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
input/camera_info |
sensor_msgs::msg::CameraInfo |
undistorted camera info |
Output
Name | Type | Description |
---|---|---|
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
filtered line segments for visualization |
output/projected_image |
sensor_msgs::msg::Image |
projected filtered line segments for visualization |
output/projected_line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
projected filtered line segments |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/segment_filter.schema.json”) }}
undistort
Purpose
This node performs image resizing and undistortion at the same time.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/camera_info |
sensor_msgs::msg::CameraInfo |
camera info |
input/image_raw |
sensor_msgs::msg::Image |
raw camera image |
input/image_raw/compressed |
sensor_msgs::msg::CompressedImage |
compressed camera image |
File truncated at 100 lines see the full file
Changelog for package yabloc_image_processing
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
- fix(yabloc_image_processing): fix deprecated autoware_utils header (#10495)
- Contributors: Masaki Baba, 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)
- Contributors: 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)
0.40.0 (2024-12-12)
-
Merge branch 'main' into release-0.40.0
-
Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
chore(package.xml): bump version to 0.39.0 (#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
fix(cpplint): include what you use - localization (#9567)
-
0.39.0
-
update changelog
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
chore(package.xml): bump version to 0.38.0 (#9266) (#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
-
Contributors: Esteve Fernandez, Fumiya Watanabe, M. Fatih Cırıt, Ryohsuke Mitsudome, Yutaka Kondo
0.39.0 (2024-11-25)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Dependant Packages
Launch files
- launch/image_processing.launch.xml
-
- src_image [default: /sensing/camera/traffic_light/image_raw]
- src_info [default: /sensing/camera/traffic_light/camera_info]
- resized_image [default: /sensing/camera/undistorted/image_raw]
- resized_info [default: /sensing/camera/undistorted/camera_info]
- output_image_with_line_segments [default: image_with_line_segments]
- output_line_segments_cloud [default: line_segments_cloud]
- output_graph_segmented [default: graph_segmented]
- output_segmented_image [default: segmented_image]
- input_graph_segmented [default: graph_segmented]
- input_line_segments_cloud [default: line_segments_cloud]
- output_projected_line_segments_cloud [default: projected_line_segments_cloud]
- output_projected_image [default: projected_image]
- output_debug_line_segments [default: debug/line_segments_cloud]
- launch/overlay.launch.xml
-
- input_overlaid_pose
- output_image_with_colored_line_segments [default: image_with_colored_line_segments]
- resized_image
- resized_info
- launch/yabloc_image_processing.launch.xml
-
- src_image
- src_info
- resized_image [default: undistorted/image_raw]
- resized_info [default: undistorted/camera_info]
- input_pose [default: undistorted]
- validation [default: true]
Messages
Services
Plugins
Recent questions tagged yabloc_image_processing 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
- Kento Yabuuchi
- Masahiro Sakamoto
- Yamato Ando
- NGUYEN Viet Anh
- Taiki Yamada
- Shintaro Sakoda
- Ryu Yamamoto
Authors
yabloc_image_processing
This package contains some executable nodes related to image processing.
- line_segment_detector
- graph_segmentation
- segment_filter
- undistort
- lanelet2_overlay
- line_segments_overlay
line_segment_detector
Purpose
This node extract all line segments from gray scale image.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/image_with_line_segments |
sensor_msgs::msg::Image |
image with line segments highlighted |
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segments as point cloud. each point contains x,y,z, normal_x, normal_y, normal_z and z, and normal_z are always empty. |
graph_segmentation
Purpose
This node extract road surface region by graph-based-segmentation.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/image_raw |
sensor_msgs::msg::Image |
undistorted image |
Output
Name | Type | Description |
---|---|---|
output/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
output/segmented_image |
sensor_msgs::msg::Image |
segmented image for visualization |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/graph_segment.schema.json”) }}
segment_filter
Purpose
This is a node that integrates the results of graph_segment and lsd to extract road surface markings.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
detected line segment |
input/mask_image |
sensor_msgs::msg::Image |
image with masked segments determined as road surface area |
input/camera_info |
sensor_msgs::msg::CameraInfo |
undistorted camera info |
Output
Name | Type | Description |
---|---|---|
output/line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
filtered line segments for visualization |
output/projected_image |
sensor_msgs::msg::Image |
projected filtered line segments for visualization |
output/projected_line_segments_cloud |
sensor_msgs::msg::PointCloud2 |
projected filtered line segments |
Parameters
{{ json_to_markdown(“localization/yabloc/yabloc_image_processing/schema/segment_filter.schema.json”) }}
undistort
Purpose
This node performs image resizing and undistortion at the same time.
Inputs / Outputs
Input
Name | Type | Description |
---|---|---|
input/camera_info |
sensor_msgs::msg::CameraInfo |
camera info |
input/image_raw |
sensor_msgs::msg::Image |
raw camera image |
input/image_raw/compressed |
sensor_msgs::msg::CompressedImage |
compressed camera image |
File truncated at 100 lines see the full file
Changelog for package yabloc_image_processing
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
- fix(yabloc_image_processing): fix deprecated autoware_utils header (#10495)
- Contributors: Masaki Baba, 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)
- Contributors: 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)
0.40.0 (2024-12-12)
-
Merge branch 'main' into release-0.40.0
-
Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
chore(package.xml): bump version to 0.39.0 (#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
-
fix: fix ticket links in CHANGELOG.rst (#9588)
-
fix(cpplint): include what you use - localization (#9567)
-
0.39.0
-
update changelog
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
-
chore(package.xml): bump version to 0.38.0 (#9266) (#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
-
Contributors: Esteve Fernandez, Fumiya Watanabe, M. Fatih Cırıt, Ryohsuke Mitsudome, Yutaka Kondo
0.39.0 (2024-11-25)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Dependant Packages
Launch files
- launch/image_processing.launch.xml
-
- src_image [default: /sensing/camera/traffic_light/image_raw]
- src_info [default: /sensing/camera/traffic_light/camera_info]
- resized_image [default: /sensing/camera/undistorted/image_raw]
- resized_info [default: /sensing/camera/undistorted/camera_info]
- output_image_with_line_segments [default: image_with_line_segments]
- output_line_segments_cloud [default: line_segments_cloud]
- output_graph_segmented [default: graph_segmented]
- output_segmented_image [default: segmented_image]
- input_graph_segmented [default: graph_segmented]
- input_line_segments_cloud [default: line_segments_cloud]
- output_projected_line_segments_cloud [default: projected_line_segments_cloud]
- output_projected_image [default: projected_image]
- output_debug_line_segments [default: debug/line_segments_cloud]
- launch/overlay.launch.xml
-
- input_overlaid_pose
- output_image_with_colored_line_segments [default: image_with_colored_line_segments]
- resized_image
- resized_info
- launch/yabloc_image_processing.launch.xml
-
- src_image
- src_info
- resized_image [default: undistorted/image_raw]
- resized_info [default: undistorted/camera_info]
- input_pose [default: undistorted]
- validation [default: true]