Commit 46726f9 1 parent 67446bd commit 46726f9 Copy full SHA for 46726f9
File tree 4 files changed +9
-9
lines changed
perception/lidar_apollo_instance_segmentation
include/lidar_apollo_instance_segmentation
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ find_package(pcl_conversions REQUIRED)
7
7
find_package (rclcpp REQUIRED)
8
8
find_package (rclcpp_components REQUIRED)
9
9
find_package (tf2_eigen REQUIRED)
10
- find_package (tier4_autoware_utils REQUIRED)
10
+ find_package (autoware_tier4_autoware_utils REQUIRED)
11
11
find_package (tier4_debug_msgs REQUIRED)
12
12
find_package (tier4_perception_msgs REQUIRED)
13
13
@@ -39,7 +39,7 @@ target_include_directories(${PROJECT_NAME} PRIVATE
39
39
"$<INSTALL_INTERFACE:include/${PROJECT_NAME} >"
40
40
${cuda_utils_INCLUDE_DIRS}
41
41
${pcl_conversions_INCLUDE_DIRS}
42
- ${tier4_autoware_utils_INCLUDE_DIRS }
42
+ ${autoware_tier4_autoware_utils_INCLUDE_DIRS }
43
43
)
44
44
45
45
target_link_libraries (${PROJECT_NAME}
Original file line number Diff line number Diff line change 23
23
#include < cuda_utils/stream_unique_ptr.hpp>
24
24
#include < tensorrt_common/tensorrt_common.hpp>
25
25
#include < tf2_eigen/tf2_eigen.hpp>
26
- #include < tier4_autoware_utils /transform/transforms.hpp>
26
+ #include < autoware_tier4_autoware_utils /transform/transforms.hpp>
27
27
28
28
#include < tf2_ros/buffer_interface.h>
29
29
#include < tf2_ros/transform_listener.h>
Original file line number Diff line number Diff line change 18
18
#include " lidar_apollo_instance_segmentation/debugger.hpp"
19
19
20
20
#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>
23
23
24
24
#include < sensor_msgs/msg/point_cloud2.hpp>
25
25
#include < tier4_perception_msgs/msg/detected_objects_with_feature.hpp>
@@ -47,8 +47,8 @@ class LidarInstanceSegmentationNode : public rclcpp::Node
47
47
std::shared_ptr<LidarInstanceSegmentationInterface> detector_ptr_;
48
48
std::shared_ptr<Debugger> debugger_ptr_;
49
49
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_;
52
52
53
53
public:
54
54
explicit LidarInstanceSegmentationNode (const rclcpp::NodeOptions & node_options);
Original file line number Diff line number Diff line change 16
16
17
17
#include " lidar_apollo_instance_segmentation/detector.hpp"
18
18
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>
21
21
22
22
namespace lidar_apollo_instance_segmentation
23
23
{
You can’t perform that action at this time.
0 commit comments