-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create launch files and fix post synchronizer for combined detections
- Loading branch information
1 parent
f42f5f7
commit e119e01
Showing
7 changed files
with
227 additions
and
45 deletions.
There are no files selected for viewing
This file contains 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
28 changes: 25 additions & 3 deletions
28
src/perception/camera_object_detection/config/post_synchronizer_config.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,26 @@ | ||
post_synchronizer_node: | ||
left_post_synchronizer_node: | ||
ros__parameters: | ||
camera_topic: /camera/right/image_color | ||
publish_vis_topic: /annotated_img | ||
camera_img_topic: /camera/left/image_color | ||
camera_detection_topic: /camera/left/camera_detections | ||
traffic_signs_topic: /traffic_signs/left | ||
traffic_lights_topic: /traffic_lights/left | ||
combined_detection_publisher: /camera/left/combined_detections | ||
publish_vis_topic: /camera/left/annotated_img | ||
|
||
center_post_synchronizer_node: | ||
ros__parameters: | ||
camera_img_topic: /camera/center/image_color | ||
camera_detection_topic: /camera/center/camera_detections | ||
traffic_signs_topic: /traffic_signs/center | ||
traffic_lights_topic: /traffic_lights/center | ||
combined_detection_publisher: /camera/center/combined_detections | ||
publish_vis_topic: /camera/center/annotated_img | ||
|
||
right_post_synchronizer_node: | ||
ros__parameters: | ||
camera_img_topic: /camera/right/image_color | ||
camera_detection_topic: /camera/right/camera_detections | ||
traffic_signs_topic: /traffic_signs/right | ||
traffic_lights_topic: /traffic_lights/right | ||
combined_detection_publisher: /camera/right/combined_detections | ||
publish_vis_topic: /camera/right/annotated_img |
28 changes: 25 additions & 3 deletions
28
src/perception/camera_object_detection/config/traffic_light_config.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,31 @@ | ||
traffic_light_node: | ||
left_traffic_light_node: | ||
ros__parameters: | ||
camera_topic: /camera/left/image_color | ||
camera_topic: /camera/left/image_color | ||
publish_vis_topic: /traffic_lights_viz | ||
publish_detection_topic: /traffic_lights/left | ||
model_path: /perception_models/traffic_light.pt | ||
crop_mode: CenterCrop | ||
image_size: 1024 | ||
save_detections: false | ||
|
||
center_traffic_light_node: | ||
ros__parameters: | ||
camera_topic: /camera/center/image_color | ||
publish_vis_topic: /traffic_lights_viz | ||
publish_detection_topic: /traffic_lights/center | ||
model_path: /perception_models/traffic_light.pt | ||
crop_mode: CenterCrop | ||
image_size: 1024 | ||
save_detections: false | ||
|
||
right_traffic_light_node: | ||
ros__parameters: | ||
camera_topic: /camera/right/image_color | ||
publish_vis_topic: /traffic_lights_viz | ||
publish_detection_topic: /traffic_lights | ||
publish_detection_topic: /traffic_lights/right | ||
model_path: /perception_models/traffic_light.pt | ||
crop_mode: CenterCrop | ||
image_size: 1024 | ||
save_detections: false | ||
|
||
|
24 changes: 22 additions & 2 deletions
24
src/perception/camera_object_detection/config/traffic_signs_config.yaml
This file contains 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
This file contains 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
This file contains 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
This file contains 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