Skip to content

Commit 1b37aea

Browse files
committed
chore: fix cspell error
Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
1 parent d2b806d commit 1b37aea

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

perception/tensorrt_yolox/config/yolox_s_plus_opt.param.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# cspell: ignore semseg
12
/**:
23
ros__parameters:
34
# refine segmentation mask by overlay roi class

perception/tensorrt_yolox/include/tensorrt_yolox/tensorrt_yolox_node.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ using LabelMap = std::map<int, std::string>;
4848
using Label = tier4_perception_msgs::msg::Semantic;
4949
class TrtYoloXNode : public rclcpp::Node
5050
{
51-
struct RoiOverlaySegmenLabel
51+
struct RoiOverlaySemsegLabel
5252
{
5353
bool UNKNOWN;
5454
bool CAR;
@@ -65,7 +65,7 @@ class TrtYoloXNode : public rclcpp::Node
6565
(label == Label::ANIMAL && ANIMAL) || (label == Label::MOTORBIKE && MOTORCYCLE) ||
6666
(label == Label::BICYCLE && BICYCLE) || (label == Label::PEDESTRIAN && PEDESTRIAN);
6767
};
68-
}; // struct RoiOverlaySegmenLabel
68+
}; // struct RoiOverlaySemsegLabel
6969

7070
public:
7171
explicit TrtYoloXNode(const rclcpp::NodeOptions & node_options);
@@ -103,7 +103,7 @@ class TrtYoloXNode : public rclcpp::Node
103103
{"BICYCLE", 8}, // bicycle
104104
{"MOTORBIKE", 8}, // motorcycle
105105
};
106-
RoiOverlaySegmenLabel roi_overlay_segment_labels_;
106+
RoiOverlaySemsegLabel roi_overlay_segment_labels_;
107107
std::unique_ptr<tier4_autoware_utils::StopWatch<std::chrono::milliseconds>> stop_watch_ptr_;
108108
std::unique_ptr<tier4_autoware_utils::DebugPublisher> debug_publisher_;
109109
};

0 commit comments

Comments
 (0)