Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: sync upstream #699

Merged
merged 11 commits into from
Jul 31, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore(dynamic_avoidance): revert debug marker's color (autowarefounda…
…tion#4450)

Revert "chore(dynamic_avoidance): change debug marker's color (autowarefoundation#3926)"

This reverts commit fc08b4f.
  • Loading branch information
takayuki5168 authored Jul 31, 2023
commit da69d7ef87d852f1902ac280c93b4eab939bec07
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void appendObjectMarker(MarkerArray & marker_array, const geometry_msgs::msg::Po
"map", rclcpp::Clock{RCL_ROS_TIME}.now(), "dynamic_objects_to_avoid",
marker_array.markers.size(), visualization_msgs::msg::Marker::CUBE,
tier4_autoware_utils::createMarkerScale(3.0, 1.0, 1.0),
tier4_autoware_utils::createMarkerColor(0.7, 0.15, 0.9, 0.8));
tier4_autoware_utils::createMarkerColor(1.0, 0.5, 0.6, 0.8));
marker.pose = obj_pose;

marker_array.markers.push_back(marker);
Expand All @@ -68,8 +68,8 @@ void appendExtractedPolygonMarker(
auto marker = tier4_autoware_utils::createDefaultMarker(
"map", rclcpp::Clock{RCL_ROS_TIME}.now(), "extracted_polygons", marker_array.markers.size(),
visualization_msgs::msg::Marker::LINE_STRIP,
tier4_autoware_utils::createMarkerScale(0.1, 0.0, 0.0),
tier4_autoware_utils::createMarkerColor(0.7, 0.15, 0.9, 0.8));
tier4_autoware_utils::createMarkerScale(0.05, 0.0, 0.0),
tier4_autoware_utils::createMarkerColor(1.0, 0.5, 0.6, 0.8));

// NOTE: obj_poly.outer() has already duplicated points to close the polygon.
for (size_t i = 0; i < obj_poly.outer().size(); ++i) {
Expand Down
Loading