Skip to content

Commit db3e731

Browse files
committed
fix: missing depend
Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
1 parent bf58bea commit db3e731

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

perception/image_projection_based_fusion/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919
<depend>autoware_perception_msgs</depend>
2020
<depend>autoware_point_types</depend>
21-
<depend>autoware_tensorrt_yolox</depend>
2221
<depend>autoware_universe_utils</depend>
22+
<depend>tensorrt_yolox</depend>
2323
<depend>cv_bridge</depend>
2424
<depend>euclidean_cluster</depend>
2525
<depend>image_geometry</depend>

perception/image_projection_based_fusion/src/segmentation_pointcloud_fusion/node.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
#include "image_projection_based_fusion/utils/geometry.hpp"
1818
#include "image_projection_based_fusion/utils/utils.hpp"
19+
#include "tensorrt_yolox/utils.hpp"
1920

2021
#ifdef ROS_DISTRO_GALACTIC
2122
#include <tf2_geometry_msgs/tf2_geometry_msgs.h>
@@ -62,7 +63,7 @@ void SegmentPointCloudFusionNode::fuseOnSingleImage(
6263
if (input_mask.height == 0 || input_mask.width == 0) {
6364
return;
6465
}
65-
cv::Mat mask = autoware::tensorrt_yolox::runLengthDecoder(
66+
cv::Mat mask = tensorrt_yolox::runLengthDecoder(
6667
input_mask.data, input_mask.height, input_mask.width);
6768
// publish debug mask
6869
if (is_publish_debug_mask_) {

0 commit comments

Comments
 (0)