Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Dec 12, 2024
1 parent e36df2d commit d4f02ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions perception/autoware_tensorrt_rtmdet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ bicycles, etc. in a scene. This package provides a ROS 2 interface for RTMDet us
### Input

| Name | Type | Description |
|------------|---------------------|-----------------|
| ---------- | ------------------- | --------------- |
| `in/image` | `sensor_msgs/Image` | The input image |

### Output

| Name | Type | Description |
|-------------------|------------------------------------------------------|---------------------------------------------------------------------|
| ----------------- | ---------------------------------------------------- | ------------------------------------------------------------------- |
| `out/objects` | `tier4_perception_msgs/DetectedObjectsWithFeature` | The detected objects with 2D bounding boxes and scores |
| `out/mask` | `autoware_internal_perception_msgs/SegmentationMask` | The instance segmentation mask |
| `out/color_mask` | `sensor_msgs/Image` | The colorized image of instance segmentation mask for visualization |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ TrtRTMDetNode::TrtRTMDetNode(const rclcpp::NodeOptions & node_options)

objects_pub_ = this->create_publisher<tier4_perception_msgs::msg::DetectedObjectsWithFeature>(
"~/out/objects", 1);
mask_pub_ =
this->create_publisher<autoware_internal_perception_msgs::msg::SegmentationMask>("~/out/mask", 1);
mask_pub_ = this->create_publisher<autoware_internal_perception_msgs::msg::SegmentationMask>(
"~/out/mask", 1);

color_mask_pub_ = image_transport::create_publisher(this, "~/out/color_mask");
debug_image_pub_ = image_transport::create_publisher(this, "~/out/debug_image");
Expand Down

0 comments on commit d4f02ec

Please sign in to comment.