-
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.
Merge pull request #80 from WATonomous/stgong/traffic_light_detection
Add traffic light launch file
- Loading branch information
Showing
14 changed files
with
212 additions
and
167 deletions.
There are no files selected for viewing
55 changes: 0 additions & 55 deletions
55
docker/perception/traffic_light_detection/traffic_light_detection.Dockerfile
This file was deleted.
Oops, something went wrong.
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
12 changes: 6 additions & 6 deletions
12
src/perception/camera_object_detection/config/eve_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,23 +1,23 @@ | ||
left_camera_object_detection_node: | ||
ros__parameters: | ||
camera_topic: /camera/left/image_color | ||
publish_vis_topic: /camera/left/annotated_img | ||
publish_detection_topic: /camera/left/detections | ||
publish_vis_topic: /camera/left/camera_detections_viz | ||
publish_detection_topic: /camera/left/camera_detections | ||
model_path: /perception_models/yolov8m.pt | ||
image_size: 1024 | ||
|
||
center_camera_object_detection_node: | ||
ros__parameters: | ||
camera_topic: /camera/center/image_color | ||
publish_vis_topic: /camera/center/annotated_img | ||
publish_detection_topic: /camera/center/detections | ||
publish_vis_topic: /camera/center/camera_detections_viz | ||
publish_detection_topic: /camera/center/camera_detections | ||
model_path: /perception_models/yolov8m.pt | ||
image_size: 1024 | ||
|
||
right_camera_object_detection_node: | ||
ros__parameters: | ||
camera_topic: /camera/right/image_color | ||
publish_vis_topic: /camera/right/annotated_img | ||
publish_detection_topic: /camera/right/detections | ||
publish_vis_topic: /camera/right/camera_detections_viz | ||
publish_detection_topic: /camera/right/camera_detections | ||
model_path: /perception_models/yolov8m.pt | ||
image_size: 1024 |
9 changes: 9 additions & 0 deletions
9
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
traffic_light_node: | ||
ros__parameters: | ||
camera_topic: /camera/left/image_color | ||
publish_vis_topic: /traffic_lights_viz | ||
publish_detection_topic: /traffic_lights | ||
model_path: /perception_models/traffic_light.pt | ||
crop_mode: CenterCrop | ||
image_size: 1024 | ||
save_detections: false |
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
Oops, something went wrong.