Skip to content

Commit 46726f9

Browse files
committed
build(lidar_apollo_instance_segmentation): fix references for tier4_autoware_utils
Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
1 parent 67446bd commit 46726f9

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

perception/lidar_apollo_instance_segmentation/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ find_package(pcl_conversions REQUIRED)
77
find_package(rclcpp REQUIRED)
88
find_package(rclcpp_components REQUIRED)
99
find_package(tf2_eigen REQUIRED)
10-
find_package(tier4_autoware_utils REQUIRED)
10+
find_package(autoware_tier4_autoware_utils REQUIRED)
1111
find_package(tier4_debug_msgs REQUIRED)
1212
find_package(tier4_perception_msgs REQUIRED)
1313

@@ -39,7 +39,7 @@ target_include_directories(${PROJECT_NAME} PRIVATE
3939
"$<INSTALL_INTERFACE:include/${PROJECT_NAME}>"
4040
${cuda_utils_INCLUDE_DIRS}
4141
${pcl_conversions_INCLUDE_DIRS}
42-
${tier4_autoware_utils_INCLUDE_DIRS}
42+
${autoware_tier4_autoware_utils_INCLUDE_DIRS}
4343
)
4444

4545
target_link_libraries(${PROJECT_NAME}

perception/lidar_apollo_instance_segmentation/include/lidar_apollo_instance_segmentation/detector.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <cuda_utils/stream_unique_ptr.hpp>
2424
#include <tensorrt_common/tensorrt_common.hpp>
2525
#include <tf2_eigen/tf2_eigen.hpp>
26-
#include <tier4_autoware_utils/transform/transforms.hpp>
26+
#include <autoware_tier4_autoware_utils/transform/transforms.hpp>
2727

2828
#include <tf2_ros/buffer_interface.h>
2929
#include <tf2_ros/transform_listener.h>

perception/lidar_apollo_instance_segmentation/include/lidar_apollo_instance_segmentation/node.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
#include "lidar_apollo_instance_segmentation/debugger.hpp"
1919

2020
#include <rclcpp/rclcpp.hpp>
21-
#include <tier4_autoware_utils/ros/debug_publisher.hpp>
22-
#include <tier4_autoware_utils/system/stop_watch.hpp>
21+
#include <autoware_tier4_autoware_utils/ros/debug_publisher.hpp>
22+
#include <autoware_tier4_autoware_utils/system/stop_watch.hpp>
2323

2424
#include <sensor_msgs/msg/point_cloud2.hpp>
2525
#include <tier4_perception_msgs/msg/detected_objects_with_feature.hpp>
@@ -47,8 +47,8 @@ class LidarInstanceSegmentationNode : public rclcpp::Node
4747
std::shared_ptr<LidarInstanceSegmentationInterface> detector_ptr_;
4848
std::shared_ptr<Debugger> debugger_ptr_;
4949
void pointCloudCallback(const sensor_msgs::msg::PointCloud2::ConstSharedPtr msg);
50-
std::unique_ptr<tier4_autoware_utils::StopWatch<std::chrono::milliseconds>> stop_watch_ptr_;
51-
std::unique_ptr<tier4_autoware_utils::DebugPublisher> debug_publisher_;
50+
std::unique_ptr<autoware_tier4_autoware_utils::StopWatch<std::chrono::milliseconds>> stop_watch_ptr_;
51+
std::unique_ptr<autoware_tier4_autoware_utils::DebugPublisher> debug_publisher_;
5252

5353
public:
5454
explicit LidarInstanceSegmentationNode(const rclcpp::NodeOptions & node_options);

perception/lidar_apollo_instance_segmentation/src/node.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
#include "lidar_apollo_instance_segmentation/detector.hpp"
1818

19-
#include <tier4_autoware_utils/ros/debug_publisher.hpp>
20-
#include <tier4_autoware_utils/system/stop_watch.hpp>
19+
#include <autoware_tier4_autoware_utils/ros/debug_publisher.hpp>
20+
#include <autoware_tier4_autoware_utils/system/stop_watch.hpp>
2121

2222
namespace lidar_apollo_instance_segmentation
2323
{

0 commit comments

Comments
 (0)