feat(autoware_carla_interface): add light weight sensor config#12525
Open
mitsudome-r wants to merge 4 commits intoautowarefoundation:mainfrom
Open
feat(autoware_carla_interface): add light weight sensor config#12525mitsudome-r wants to merge 4 commits intoautowarefoundation:mainfrom
mitsudome-r wants to merge 4 commits intoautowarefoundation:mainfrom
Conversation
|
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
2c50aff to
9fa63f4
Compare
maxime-clem
approved these changes
May 7, 2026
Contributor
maxime-clem
left a comment
There was a problem hiding this comment.
Tested with both use_light_weight_sensor_mapping:=False and use_light_weight_sensor_mapping:=True and in both cases Autoware could correctly localize.
Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp>
Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp>
Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp>
9fa63f4 to
f222d0e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds an optional light-weight sensor configuration for
autoware_carla_interfaceto make CARLA simulation usable on machines with limited GPU/CPU resources.use_light_weight_sensor_mappinglaunch argument (defaultFalse). WhenTrue, the launch file selectsconfig/sensor_mapping_light_weight.yamland skips theimage_transportrepublish nodes for the disabled cameras and themulti_camera_combinernode.CAM_FRONT, 120° FOV, 1080x720) instead of the default 6-camera 360° setup, and lowers LiDAR/camera frequency to 10 Hz. LiDAR/IMU/GNSS configuration is otherwise unchanged.SensorKitLoadernow logs a warning when it falls back to the source-tree default sensor mapping path, to make the fallback visible during debugging.Related links
Parent Issue:
How was this PR tested?
e2e_simulator.launch.xmlwithsimulator_type:=carlaanduse_light_weight_sensor_mapping:=True, confirmed onlyCAM_FRONTis published andmulti_camera_combineris not started.use_light_weight_sensor_mapping:=False(default) and confirmed all 6 cameras and the combiner still come up as before.Notes for reviewers
The default behavior is unchanged —
use_light_weight_sensor_mappingdefaults toFalseand the existingsensor_mapping.yamlis selected. Reviewers who don't use the flag should see no functional difference.Interface changes
None.
Effects on system behavior
None.