From 46266b59afad7dd975e0ceb9cf9194ecdd406c43 Mon Sep 17 00:00:00 2001 From: "Takagi, Isamu" <isamu.takagi@tier4.jp> Date: Fri, 21 Feb 2025 14:12:03 +0900 Subject: [PATCH 1/6] feat(autoware_utils_pcl): split package Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp> --- .../include/autoware_utils/autoware_utils.hpp | 4 --- .../autoware_utils/ros/self_pose_listener.hpp | 2 +- autoware_utils/package.xml | 3 +-- autoware_utils_pcl/CMakeLists.txt | 14 ++++++++++ autoware_utils_pcl/README.md | 1 + .../include/autoware_utils_pcl/conversion.hpp | 10 +++---- .../managed_transform_buffer.hpp | 13 +++++---- .../include/autoware_utils_pcl/transform.hpp | 10 +++---- autoware_utils_pcl/package.xml | 27 +++++++++++++++++++ autoware_utils_pcl/test/src/build.cpp | 23 ++++++++++++++++ autoware_utils_pcl/test/test_main.cpp | 26 ++++++++++++++++++ autoware_utils_tf2/CMakeLists.txt | 14 ++++++++++ autoware_utils_tf2/README.md | 1 + .../transform_listener.hpp | 10 +++---- autoware_utils_tf2/package.xml | 27 +++++++++++++++++++ autoware_utils_tf2/test/src/build.cpp | 21 +++++++++++++++ autoware_utils_tf2/test/test_main.cpp | 26 ++++++++++++++++++ 17 files changed, 203 insertions(+), 29 deletions(-) create mode 100644 autoware_utils_pcl/CMakeLists.txt create mode 100644 autoware_utils_pcl/README.md rename autoware_utils/include/autoware_utils/ros/pcl_conversion.hpp => autoware_utils_pcl/include/autoware_utils_pcl/conversion.hpp (92%) rename {autoware_utils/include/autoware_utils/ros => autoware_utils_pcl/include/autoware_utils_pcl}/managed_transform_buffer.hpp (96%) rename autoware_utils/include/autoware_utils/transform/transforms.hpp => autoware_utils_pcl/include/autoware_utils_pcl/transform.hpp (87%) create mode 100644 autoware_utils_pcl/package.xml create mode 100644 autoware_utils_pcl/test/src/build.cpp create mode 100644 autoware_utils_pcl/test/test_main.cpp create mode 100644 autoware_utils_tf2/CMakeLists.txt create mode 100644 autoware_utils_tf2/README.md rename {autoware_utils/include/autoware_utils/ros => autoware_utils_tf2/include/autoware_utils_tf2}/transform_listener.hpp (92%) create mode 100644 autoware_utils_tf2/package.xml create mode 100644 autoware_utils_tf2/test/src/build.cpp create mode 100644 autoware_utils_tf2/test/test_main.cpp diff --git a/autoware_utils/include/autoware_utils/autoware_utils.hpp b/autoware_utils/include/autoware_utils/autoware_utils.hpp index d753e34..1ada4ac 100644 --- a/autoware_utils/include/autoware_utils/autoware_utils.hpp +++ b/autoware_utils/include/autoware_utils/autoware_utils.hpp @@ -35,17 +35,14 @@ #include "autoware_utils/ros/debug_traits.hpp" #include "autoware_utils/ros/diagnostics_interface.hpp" #include "autoware_utils/ros/logger_level_configure.hpp" -#include "autoware_utils/ros/managed_transform_buffer.hpp" #include "autoware_utils/ros/marker_helper.hpp" #include "autoware_utils/ros/msg_covariance.hpp" #include "autoware_utils/ros/msg_operation.hpp" #include "autoware_utils/ros/parameter.hpp" -#include "autoware_utils/ros/pcl_conversion.hpp" #include "autoware_utils/ros/polling_subscriber.hpp" #include "autoware_utils/ros/processing_time_publisher.hpp" #include "autoware_utils/ros/published_time_publisher.hpp" #include "autoware_utils/ros/self_pose_listener.hpp" -#include "autoware_utils/ros/transform_listener.hpp" #include "autoware_utils/ros/update_param.hpp" #include "autoware_utils/ros/uuid_helper.hpp" #include "autoware_utils/ros/wait_for_param.hpp" @@ -53,6 +50,5 @@ #include "autoware_utils/system/lru_cache.hpp" #include "autoware_utils/system/stop_watch.hpp" #include "autoware_utils/system/time_keeper.hpp" -#include "autoware_utils/transform/transforms.hpp" #endif // AUTOWARE_UTILS__AUTOWARE_UTILS_HPP_ diff --git a/autoware_utils/include/autoware_utils/ros/self_pose_listener.hpp b/autoware_utils/include/autoware_utils/ros/self_pose_listener.hpp index 23f878c..34f689b 100644 --- a/autoware_utils/include/autoware_utils/ros/self_pose_listener.hpp +++ b/autoware_utils/include/autoware_utils/ros/self_pose_listener.hpp @@ -16,7 +16,7 @@ #define AUTOWARE_UTILS__ROS__SELF_POSE_LISTENER_HPP_ #include "autoware_utils/geometry/geometry.hpp" -#include "autoware_utils/ros/transform_listener.hpp" +#include "autoware_utils_tf2/transform_listener.hpp" #include <rclcpp/rclcpp.hpp> diff --git a/autoware_utils/package.xml b/autoware_utils/package.xml index fa716d3..db449e7 100644 --- a/autoware_utils/package.xml +++ b/autoware_utils/package.xml @@ -18,14 +18,13 @@ <depend>autoware_internal_planning_msgs</depend> <depend>autoware_perception_msgs</depend> <depend>autoware_planning_msgs</depend> + <depend>autoware_utils_tf2</depend> <depend>autoware_vehicle_msgs</depend> <depend>builtin_interfaces</depend> <depend>diagnostic_msgs</depend> <depend>geometry_msgs</depend> <depend>libboost-system-dev</depend> <depend>logging_demo</depend> - <depend>pcl_conversions</depend> - <depend>pcl_ros</depend> <depend>rclcpp</depend> <depend>tf2</depend> <depend>tf2_eigen</depend> diff --git a/autoware_utils_pcl/CMakeLists.txt b/autoware_utils_pcl/CMakeLists.txt new file mode 100644 index 0000000..288a7b5 --- /dev/null +++ b/autoware_utils_pcl/CMakeLists.txt @@ -0,0 +1,14 @@ +cmake_minimum_required(VERSION 3.14) +project(autoware_utils_pcl) + +find_package(autoware_cmake REQUIRED) +autoware_package() + +if(BUILD_TESTING) + file(GLOB_RECURSE test_files test/**/*.cpp) + ament_add_ros_isolated_gtest(test_${PROJECT_NAME} ${test_files}) + ament_target_dependencies(test_${PROJECT_NAME} autoware_utils_tf2 pcl_conversions pcl_ros) + target_include_directories(test_${PROJECT_NAME} PRIVATE include) +endif() + +ament_auto_package() diff --git a/autoware_utils_pcl/README.md b/autoware_utils_pcl/README.md new file mode 100644 index 0000000..a448bf5 --- /dev/null +++ b/autoware_utils_pcl/README.md @@ -0,0 +1 @@ +# autoware_utils_pcl diff --git a/autoware_utils/include/autoware_utils/ros/pcl_conversion.hpp b/autoware_utils_pcl/include/autoware_utils_pcl/conversion.hpp similarity index 92% rename from autoware_utils/include/autoware_utils/ros/pcl_conversion.hpp rename to autoware_utils_pcl/include/autoware_utils_pcl/conversion.hpp index 77c5c6b..593b088 100644 --- a/autoware_utils/include/autoware_utils/ros/pcl_conversion.hpp +++ b/autoware_utils_pcl/include/autoware_utils_pcl/conversion.hpp @@ -12,15 +12,15 @@ // See the License for the specific language governing permissions and // limitations under the License. -#ifndef AUTOWARE_UTILS__ROS__PCL_CONVERSION_HPP_ -#define AUTOWARE_UTILS__ROS__PCL_CONVERSION_HPP_ +#ifndef AUTOWARE_UTILS_PCL__CONVERSION_HPP_ +#define AUTOWARE_UTILS_PCL__CONVERSION_HPP_ #include <pcl/common/transforms.h> #include <pcl_conversions/pcl_conversions.h> #include <vector> -namespace autoware_utils +namespace autoware_utils_pcl { /** * @brief a faster implementation of converting sensor_msgs::msg::PointCloud2 to @@ -67,6 +67,6 @@ void transform_point_cloud_from_ros_msg( } } -} // namespace autoware_utils +} // namespace autoware_utils_pcl -#endif // AUTOWARE_UTILS__ROS__PCL_CONVERSION_HPP_ +#endif // AUTOWARE_UTILS_PCL__CONVERSION_HPP_ diff --git a/autoware_utils/include/autoware_utils/ros/managed_transform_buffer.hpp b/autoware_utils_pcl/include/autoware_utils_pcl/managed_transform_buffer.hpp similarity index 96% rename from autoware_utils/include/autoware_utils/ros/managed_transform_buffer.hpp rename to autoware_utils_pcl/include/autoware_utils_pcl/managed_transform_buffer.hpp index a14dbf8..7161e52 100644 --- a/autoware_utils/include/autoware_utils/ros/managed_transform_buffer.hpp +++ b/autoware_utils_pcl/include/autoware_utils_pcl/managed_transform_buffer.hpp @@ -12,11 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -#ifndef AUTOWARE_UTILS__ROS__MANAGED_TRANSFORM_BUFFER_HPP_ -#define AUTOWARE_UTILS__ROS__MANAGED_TRANSFORM_BUFFER_HPP_ - -#include "autoware_utils/ros/transform_listener.hpp" +#ifndef AUTOWARE_UTILS_PCL__MANAGED_TRANSFORM_BUFFER_HPP_ +#define AUTOWARE_UTILS_PCL__MANAGED_TRANSFORM_BUFFER_HPP_ +#include <autoware_utils_tf2/transform_listener.hpp> #include <eigen3/Eigen/Core> #include <pcl_ros/transforms.hpp> #include <rclcpp/rclcpp.hpp> @@ -47,7 +46,7 @@ struct hash<std::pair<std::string, std::string>> }; } // namespace std -namespace autoware_utils +namespace autoware_utils_pcl { using std::chrono_literals::operator""ms; using Key = std::pair<std::string, std::string>; @@ -223,6 +222,6 @@ class ManagedTransformBuffer std::function<bool(const std::string &, const std::string &, Eigen::Matrix4f &)> get_transform_; }; -} // namespace autoware_utils +} // namespace autoware_utils_pcl -#endif // AUTOWARE_UTILS__ROS__MANAGED_TRANSFORM_BUFFER_HPP_ +#endif // AUTOWARE_UTILS_PCL__MANAGED_TRANSFORM_BUFFER_HPP_ diff --git a/autoware_utils/include/autoware_utils/transform/transforms.hpp b/autoware_utils_pcl/include/autoware_utils_pcl/transform.hpp similarity index 87% rename from autoware_utils/include/autoware_utils/transform/transforms.hpp rename to autoware_utils_pcl/include/autoware_utils_pcl/transform.hpp index 042d67e..18776a4 100644 --- a/autoware_utils/include/autoware_utils/transform/transforms.hpp +++ b/autoware_utils_pcl/include/autoware_utils_pcl/transform.hpp @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -#ifndef AUTOWARE_UTILS__TRANSFORM__TRANSFORMS_HPP_ -#define AUTOWARE_UTILS__TRANSFORM__TRANSFORMS_HPP_ +#ifndef AUTOWARE_UTILS_PCL__TRANSFORM_HPP_ +#define AUTOWARE_UTILS_PCL__TRANSFORM_HPP_ #include <Eigen/Core> #include <rclcpp/rclcpp.hpp> @@ -21,7 +21,7 @@ #include <pcl/common/transforms.h> #include <pcl/point_cloud.h> -namespace autoware_utils +namespace autoware_utils_pcl { template <typename PointT> void transform_pointcloud( @@ -46,6 +46,6 @@ void transform_pointcloud( pcl::transformPointCloud(cloud_in, cloud_out, transform); } } -} // namespace autoware_utils +} // namespace autoware_utils_pcl -#endif // AUTOWARE_UTILS__TRANSFORM__TRANSFORMS_HPP_ +#endif // AUTOWARE_UTILS_PCL__TRANSFORM_HPP_ diff --git a/autoware_utils_pcl/package.xml b/autoware_utils_pcl/package.xml new file mode 100644 index 0000000..6bff126 --- /dev/null +++ b/autoware_utils_pcl/package.xml @@ -0,0 +1,27 @@ +<?xml version="1.0"?> +<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> +<package format="3"> + <name>autoware_utils_pcl</name> + <version>1.1.0</version> + <description>The autoware_utils_pcl package</description> + <maintainer email="egon.kang@autocore.ai">Jian Kang</maintainer> + <maintainer email="ryohsuke.mitsudome@tier4.jp">Ryohsuke Mitsudome</maintainer> + <maintainer email="esteve.fernandez@tier4.jp">Esteve Fernandez</maintainer> + <maintainer email="yutaka.kondo@tier4.jp">Yutaka Kondo</maintainer> + <license>Apache License 2.0</license> + + <buildtool_depend>ament_cmake_auto</buildtool_depend> + <buildtool_depend>autoware_cmake</buildtool_depend> + + <depend>autoware_utils_tf2</depend> + <depend>pcl_conversions</depend> + <depend>pcl_ros</depend> + + <test_depend>ament_cmake_ros</test_depend> + <test_depend>ament_lint_auto</test_depend> + <test_depend>autoware_lint_common</test_depend> + + <export> + <build_type>ament_cmake</build_type> + </export> +</package> diff --git a/autoware_utils_pcl/test/src/build.cpp b/autoware_utils_pcl/test/src/build.cpp new file mode 100644 index 0000000..876b6e8 --- /dev/null +++ b/autoware_utils_pcl/test/src/build.cpp @@ -0,0 +1,23 @@ +// Copyright 2025 The Autoware Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include <autoware_utils_pcl/conversion.hpp> +#include <autoware_utils_pcl/managed_transform_buffer.hpp> +#include <autoware_utils_pcl/transform.hpp> + +#include <gtest/gtest.h> + +TEST(AutowareUtilsPcl, Build) +{ +} diff --git a/autoware_utils_pcl/test/test_main.cpp b/autoware_utils_pcl/test/test_main.cpp new file mode 100644 index 0000000..d585664 --- /dev/null +++ b/autoware_utils_pcl/test/test_main.cpp @@ -0,0 +1,26 @@ +// Copyright 2025 The Autoware Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include <rclcpp/rclcpp.hpp> + +#include <gtest/gtest.h> + +int main(int argc, char * argv[]) +{ + testing::InitGoogleTest(&argc, argv); + rclcpp::init(argc, argv); + bool result = RUN_ALL_TESTS(); + rclcpp::shutdown(); + return result; +} diff --git a/autoware_utils_tf2/CMakeLists.txt b/autoware_utils_tf2/CMakeLists.txt new file mode 100644 index 0000000..8a590f9 --- /dev/null +++ b/autoware_utils_tf2/CMakeLists.txt @@ -0,0 +1,14 @@ +cmake_minimum_required(VERSION 3.14) +project(autoware_utils_tf2) + +find_package(autoware_cmake REQUIRED) +autoware_package() + +if(BUILD_TESTING) + file(GLOB_RECURSE test_files test/**/*.cpp) + ament_add_ros_isolated_gtest(test_${PROJECT_NAME} ${test_files}) + ament_target_dependencies(test_${PROJECT_NAME} geometry_msgs rclcpp tf2_ros) + target_include_directories(test_${PROJECT_NAME} PRIVATE include) +endif() + +ament_auto_package() diff --git a/autoware_utils_tf2/README.md b/autoware_utils_tf2/README.md new file mode 100644 index 0000000..42e60ce --- /dev/null +++ b/autoware_utils_tf2/README.md @@ -0,0 +1 @@ +# autoware_utils_tf2 diff --git a/autoware_utils/include/autoware_utils/ros/transform_listener.hpp b/autoware_utils_tf2/include/autoware_utils_tf2/transform_listener.hpp similarity index 92% rename from autoware_utils/include/autoware_utils/ros/transform_listener.hpp rename to autoware_utils_tf2/include/autoware_utils_tf2/transform_listener.hpp index 4b75545..8e894bc 100644 --- a/autoware_utils/include/autoware_utils/ros/transform_listener.hpp +++ b/autoware_utils_tf2/include/autoware_utils_tf2/transform_listener.hpp @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -#ifndef AUTOWARE_UTILS__ROS__TRANSFORM_LISTENER_HPP_ -#define AUTOWARE_UTILS__ROS__TRANSFORM_LISTENER_HPP_ +#ifndef AUTOWARE_UTILS_TF2__TRANSFORM_LISTENER_HPP_ +#define AUTOWARE_UTILS_TF2__TRANSFORM_LISTENER_HPP_ #include <rclcpp/rclcpp.hpp> @@ -26,7 +26,7 @@ #include <memory> #include <string> -namespace autoware_utils +namespace autoware_utils_tf2 { class TransformListener { @@ -82,6 +82,6 @@ class TransformListener std::shared_ptr<tf2_ros::Buffer> tf_buffer_; std::shared_ptr<tf2_ros::TransformListener> tf_listener_; }; -} // namespace autoware_utils +} // namespace autoware_utils_tf2 -#endif // AUTOWARE_UTILS__ROS__TRANSFORM_LISTENER_HPP_ +#endif // AUTOWARE_UTILS_TF2__TRANSFORM_LISTENER_HPP_ diff --git a/autoware_utils_tf2/package.xml b/autoware_utils_tf2/package.xml new file mode 100644 index 0000000..54e8a25 --- /dev/null +++ b/autoware_utils_tf2/package.xml @@ -0,0 +1,27 @@ +<?xml version="1.0"?> +<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> +<package format="3"> + <name>autoware_utils_tf2</name> + <version>1.1.0</version> + <description>The autoware_utils_tf2 package</description> + <maintainer email="egon.kang@autocore.ai">Jian Kang</maintainer> + <maintainer email="ryohsuke.mitsudome@tier4.jp">Ryohsuke Mitsudome</maintainer> + <maintainer email="esteve.fernandez@tier4.jp">Esteve Fernandez</maintainer> + <maintainer email="yutaka.kondo@tier4.jp">Yutaka Kondo</maintainer> + <license>Apache License 2.0</license> + + <buildtool_depend>ament_cmake_auto</buildtool_depend> + <buildtool_depend>autoware_cmake</buildtool_depend> + + <depend>geometry_msgs</depend> + <depend>rclcpp</depend> + <depend>tf2_ros</depend> + + <test_depend>ament_cmake_ros</test_depend> + <test_depend>ament_lint_auto</test_depend> + <test_depend>autoware_lint_common</test_depend> + + <export> + <build_type>ament_cmake</build_type> + </export> +</package> diff --git a/autoware_utils_tf2/test/src/build.cpp b/autoware_utils_tf2/test/src/build.cpp new file mode 100644 index 0000000..85b60f0 --- /dev/null +++ b/autoware_utils_tf2/test/src/build.cpp @@ -0,0 +1,21 @@ +// Copyright 2025 The Autoware Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include <autoware_utils_tf2/transform_listener.hpp> + +#include <gtest/gtest.h> + +TEST(AutowareUtilsTf2, Build) +{ +} diff --git a/autoware_utils_tf2/test/test_main.cpp b/autoware_utils_tf2/test/test_main.cpp new file mode 100644 index 0000000..d585664 --- /dev/null +++ b/autoware_utils_tf2/test/test_main.cpp @@ -0,0 +1,26 @@ +// Copyright 2025 The Autoware Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include <rclcpp/rclcpp.hpp> + +#include <gtest/gtest.h> + +int main(int argc, char * argv[]) +{ + testing::InitGoogleTest(&argc, argv); + rclcpp::init(argc, argv); + bool result = RUN_ALL_TESTS(); + rclcpp::shutdown(); + return result; +} From 79ddb19530fd741ad0f6b34e4bcc37b6c084cc7e Mon Sep 17 00:00:00 2001 From: "Takagi, Isamu" <isamu.takagi@tier4.jp> Date: Fri, 21 Feb 2025 14:17:15 +0900 Subject: [PATCH 2/6] add maintainer Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp> --- autoware_utils/package.xml | 1 + autoware_utils_pcl/package.xml | 1 + autoware_utils_tf2/package.xml | 1 + 3 files changed, 3 insertions(+) diff --git a/autoware_utils/package.xml b/autoware_utils/package.xml index db449e7..46e401d 100644 --- a/autoware_utils/package.xml +++ b/autoware_utils/package.xml @@ -8,6 +8,7 @@ <maintainer email="ryohsuke.mitsudome@tier4.jp">Ryohsuke Mitsudome</maintainer> <maintainer email="esteve.fernandez@tier4.jp">Esteve Fernandez</maintainer> <maintainer email="yutaka.kondo@tier4.jp">Yutaka Kondo</maintainer> + <maintainer email="isamu.takagi@tier4.jp">Takagi, Isamu</maintainer> <license>Apache License 2.0</license> <buildtool_depend>ament_cmake_auto</buildtool_depend> diff --git a/autoware_utils_pcl/package.xml b/autoware_utils_pcl/package.xml index 6bff126..8530e7f 100644 --- a/autoware_utils_pcl/package.xml +++ b/autoware_utils_pcl/package.xml @@ -8,6 +8,7 @@ <maintainer email="ryohsuke.mitsudome@tier4.jp">Ryohsuke Mitsudome</maintainer> <maintainer email="esteve.fernandez@tier4.jp">Esteve Fernandez</maintainer> <maintainer email="yutaka.kondo@tier4.jp">Yutaka Kondo</maintainer> + <maintainer email="isamu.takagi@tier4.jp">Takagi, Isamu</maintainer> <license>Apache License 2.0</license> <buildtool_depend>ament_cmake_auto</buildtool_depend> diff --git a/autoware_utils_tf2/package.xml b/autoware_utils_tf2/package.xml index 54e8a25..2503e9e 100644 --- a/autoware_utils_tf2/package.xml +++ b/autoware_utils_tf2/package.xml @@ -8,6 +8,7 @@ <maintainer email="ryohsuke.mitsudome@tier4.jp">Ryohsuke Mitsudome</maintainer> <maintainer email="esteve.fernandez@tier4.jp">Esteve Fernandez</maintainer> <maintainer email="yutaka.kondo@tier4.jp">Yutaka Kondo</maintainer> + <maintainer email="isamu.takagi@tier4.jp">Takagi, Isamu</maintainer> <license>Apache License 2.0</license> <buildtool_depend>ament_cmake_auto</buildtool_depend> From 20810362971576a3951b566a0fe4a446f7a8b2d6 Mon Sep 17 00:00:00 2001 From: "Takagi, Isamu" <isamu.takagi@tier4.jp> Date: Fri, 21 Feb 2025 14:53:06 +0900 Subject: [PATCH 3/6] fix build error Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp> --- .../autoware_utils/ros/self_pose_listener.hpp | 2 +- .../autoware_utils/ros/transform_listener.hpp | 27 +++++++++++++++++++ .../managed_transform_buffer.hpp | 6 ++--- 3 files changed, 31 insertions(+), 4 deletions(-) create mode 100644 autoware_utils/include/autoware_utils/ros/transform_listener.hpp diff --git a/autoware_utils/include/autoware_utils/ros/self_pose_listener.hpp b/autoware_utils/include/autoware_utils/ros/self_pose_listener.hpp index 34f689b..23f878c 100644 --- a/autoware_utils/include/autoware_utils/ros/self_pose_listener.hpp +++ b/autoware_utils/include/autoware_utils/ros/self_pose_listener.hpp @@ -16,7 +16,7 @@ #define AUTOWARE_UTILS__ROS__SELF_POSE_LISTENER_HPP_ #include "autoware_utils/geometry/geometry.hpp" -#include "autoware_utils_tf2/transform_listener.hpp" +#include "autoware_utils/ros/transform_listener.hpp" #include <rclcpp/rclcpp.hpp> diff --git a/autoware_utils/include/autoware_utils/ros/transform_listener.hpp b/autoware_utils/include/autoware_utils/ros/transform_listener.hpp new file mode 100644 index 0000000..411a7bf --- /dev/null +++ b/autoware_utils/include/autoware_utils/ros/transform_listener.hpp @@ -0,0 +1,27 @@ +// Copyright 2025 The Autoware Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef AUTOWARE_UTILS__ROS__TRANSFORM_LISTENER_HPP_ +#define AUTOWARE_UTILS__ROS__TRANSFORM_LISTENER_HPP_ + +#include <autoware_utils_tf2/transform_listener.hpp> + +namespace autoware_utils +{ + +using namespace autoware_utils_tf2; // NOLINT(build/namespaces) + +} // namespace autoware_utils + +#endif // AUTOWARE_UTILS__ROS__TRANSFORM_LISTENER_HPP_ diff --git a/autoware_utils_pcl/include/autoware_utils_pcl/managed_transform_buffer.hpp b/autoware_utils_pcl/include/autoware_utils_pcl/managed_transform_buffer.hpp index 7161e52..e9de37b 100644 --- a/autoware_utils_pcl/include/autoware_utils_pcl/managed_transform_buffer.hpp +++ b/autoware_utils_pcl/include/autoware_utils_pcl/managed_transform_buffer.hpp @@ -73,7 +73,7 @@ class ManagedTransformBuffer return get_static_transform(target_frame, source_frame, eigen_transform); }; } else { - tf_listener_ = std::make_unique<autoware_utils::TransformListener>(node); + tf_listener_ = std::make_unique<autoware_utils_tf2::TransformListener>(node); get_transform_ = [this]( const std::string & target_frame, const std::string & source_frame, Eigen::Matrix4f & eigen_transform) { @@ -173,7 +173,7 @@ class ManagedTransformBuffer } // Get the transform from the TF tree - tf_listener_ = std::make_unique<autoware_utils::TransformListener>(node_); + tf_listener_ = std::make_unique<autoware_utils_tf2::TransformListener>(node_); auto tf = tf_listener_->get_transform( target_frame, source_frame, rclcpp::Time(0), rclcpp::Duration(1000ms)); tf_listener_.reset(); @@ -218,7 +218,7 @@ class ManagedTransformBuffer TFMap buffer_; rclcpp::Node * const node_; - std::unique_ptr<autoware_utils::TransformListener> tf_listener_; + std::unique_ptr<autoware_utils_tf2::TransformListener> tf_listener_; std::function<bool(const std::string &, const std::string &, Eigen::Matrix4f &)> get_transform_; }; From 8a83320f9243d58b5be38182e58c4bd4186d1c56 Mon Sep 17 00:00:00 2001 From: "Takagi, Isamu" <isamu.takagi@tier4.jp> Date: Fri, 21 Feb 2025 15:30:09 +0900 Subject: [PATCH 4/6] add compatibility Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp> --- .../include/autoware_utils/autoware_utils.hpp | 4 +++ .../ros/managed_transform_buffer.hpp | 27 +++++++++++++++++++ .../autoware_utils/ros/pcl_conversion.hpp | 27 +++++++++++++++++++ .../autoware_utils/transform/transforms.hpp | 27 +++++++++++++++++++ autoware_utils/package.xml | 1 + .../{conversion.hpp => pcl_conversion.hpp} | 6 ++--- .../{transform.hpp => transforms.hpp} | 6 ++--- autoware_utils_pcl/test/src/build.cpp | 4 +-- 8 files changed, 94 insertions(+), 8 deletions(-) create mode 100644 autoware_utils/include/autoware_utils/ros/managed_transform_buffer.hpp create mode 100644 autoware_utils/include/autoware_utils/ros/pcl_conversion.hpp create mode 100644 autoware_utils/include/autoware_utils/transform/transforms.hpp rename autoware_utils_pcl/include/autoware_utils_pcl/{conversion.hpp => pcl_conversion.hpp} (94%) rename autoware_utils_pcl/include/autoware_utils_pcl/{transform.hpp => transforms.hpp} (92%) diff --git a/autoware_utils/include/autoware_utils/autoware_utils.hpp b/autoware_utils/include/autoware_utils/autoware_utils.hpp index 1ada4ac..d753e34 100644 --- a/autoware_utils/include/autoware_utils/autoware_utils.hpp +++ b/autoware_utils/include/autoware_utils/autoware_utils.hpp @@ -35,14 +35,17 @@ #include "autoware_utils/ros/debug_traits.hpp" #include "autoware_utils/ros/diagnostics_interface.hpp" #include "autoware_utils/ros/logger_level_configure.hpp" +#include "autoware_utils/ros/managed_transform_buffer.hpp" #include "autoware_utils/ros/marker_helper.hpp" #include "autoware_utils/ros/msg_covariance.hpp" #include "autoware_utils/ros/msg_operation.hpp" #include "autoware_utils/ros/parameter.hpp" +#include "autoware_utils/ros/pcl_conversion.hpp" #include "autoware_utils/ros/polling_subscriber.hpp" #include "autoware_utils/ros/processing_time_publisher.hpp" #include "autoware_utils/ros/published_time_publisher.hpp" #include "autoware_utils/ros/self_pose_listener.hpp" +#include "autoware_utils/ros/transform_listener.hpp" #include "autoware_utils/ros/update_param.hpp" #include "autoware_utils/ros/uuid_helper.hpp" #include "autoware_utils/ros/wait_for_param.hpp" @@ -50,5 +53,6 @@ #include "autoware_utils/system/lru_cache.hpp" #include "autoware_utils/system/stop_watch.hpp" #include "autoware_utils/system/time_keeper.hpp" +#include "autoware_utils/transform/transforms.hpp" #endif // AUTOWARE_UTILS__AUTOWARE_UTILS_HPP_ diff --git a/autoware_utils/include/autoware_utils/ros/managed_transform_buffer.hpp b/autoware_utils/include/autoware_utils/ros/managed_transform_buffer.hpp new file mode 100644 index 0000000..12547a5 --- /dev/null +++ b/autoware_utils/include/autoware_utils/ros/managed_transform_buffer.hpp @@ -0,0 +1,27 @@ +// Copyright 2025 The Autoware Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef AUTOWARE_UTILS__ROS__MANAGED_TRANSFORM_BUFFER_HPP_ +#define AUTOWARE_UTILS__ROS__MANAGED_TRANSFORM_BUFFER_HPP_ + +#include <autoware_utils_pcl/managed_transform_buffer.hpp> + +namespace autoware_utils +{ + +using namespace autoware_utils_pcl; // NOLINT(build/namespaces) + +} // namespace autoware_utils + +#endif // AUTOWARE_UTILS__ROS__MANAGED_TRANSFORM_BUFFER_HPP_ diff --git a/autoware_utils/include/autoware_utils/ros/pcl_conversion.hpp b/autoware_utils/include/autoware_utils/ros/pcl_conversion.hpp new file mode 100644 index 0000000..1afc814 --- /dev/null +++ b/autoware_utils/include/autoware_utils/ros/pcl_conversion.hpp @@ -0,0 +1,27 @@ +// Copyright 2025 The Autoware Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef AUTOWARE_UTILS__ROS__PCL_CONVERSION_HPP_ +#define AUTOWARE_UTILS__ROS__PCL_CONVERSION_HPP_ + +#include <autoware_utils_pcl/pcl_conversion.hpp> + +namespace autoware_utils +{ + +using namespace autoware_utils_pcl; // NOLINT(build/namespaces) + +} // namespace autoware_utils + +#endif // AUTOWARE_UTILS__ROS__PCL_CONVERSION_HPP_ diff --git a/autoware_utils/include/autoware_utils/transform/transforms.hpp b/autoware_utils/include/autoware_utils/transform/transforms.hpp new file mode 100644 index 0000000..bfb1e00 --- /dev/null +++ b/autoware_utils/include/autoware_utils/transform/transforms.hpp @@ -0,0 +1,27 @@ +// Copyright 2025 The Autoware Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef AUTOWARE_UTILS__TRANSFORM__TRANSFORMS_HPP_ +#define AUTOWARE_UTILS__TRANSFORM__TRANSFORMS_HPP_ + +#include <autoware_utils_pcl/transforms.hpp> + +namespace autoware_utils +{ + +using namespace autoware_utils_pcl; // NOLINT(build/namespaces) + +} // namespace autoware_utils + +#endif // AUTOWARE_UTILS__TRANSFORM__TRANSFORMS_HPP_ diff --git a/autoware_utils/package.xml b/autoware_utils/package.xml index 46e401d..27e7391 100644 --- a/autoware_utils/package.xml +++ b/autoware_utils/package.xml @@ -19,6 +19,7 @@ <depend>autoware_internal_planning_msgs</depend> <depend>autoware_perception_msgs</depend> <depend>autoware_planning_msgs</depend> + <depend>autoware_utils_pcl</depend> <depend>autoware_utils_tf2</depend> <depend>autoware_vehicle_msgs</depend> <depend>builtin_interfaces</depend> diff --git a/autoware_utils_pcl/include/autoware_utils_pcl/conversion.hpp b/autoware_utils_pcl/include/autoware_utils_pcl/pcl_conversion.hpp similarity index 94% rename from autoware_utils_pcl/include/autoware_utils_pcl/conversion.hpp rename to autoware_utils_pcl/include/autoware_utils_pcl/pcl_conversion.hpp index 593b088..ddfe3b9 100644 --- a/autoware_utils_pcl/include/autoware_utils_pcl/conversion.hpp +++ b/autoware_utils_pcl/include/autoware_utils_pcl/pcl_conversion.hpp @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -#ifndef AUTOWARE_UTILS_PCL__CONVERSION_HPP_ -#define AUTOWARE_UTILS_PCL__CONVERSION_HPP_ +#ifndef AUTOWARE_UTILS_PCL__PCL_CONVERSION_HPP_ +#define AUTOWARE_UTILS_PCL__PCL_CONVERSION_HPP_ #include <pcl/common/transforms.h> #include <pcl_conversions/pcl_conversions.h> @@ -69,4 +69,4 @@ void transform_point_cloud_from_ros_msg( } // namespace autoware_utils_pcl -#endif // AUTOWARE_UTILS_PCL__CONVERSION_HPP_ +#endif // AUTOWARE_UTILS_PCL__PCL_CONVERSION_HPP_ diff --git a/autoware_utils_pcl/include/autoware_utils_pcl/transform.hpp b/autoware_utils_pcl/include/autoware_utils_pcl/transforms.hpp similarity index 92% rename from autoware_utils_pcl/include/autoware_utils_pcl/transform.hpp rename to autoware_utils_pcl/include/autoware_utils_pcl/transforms.hpp index 18776a4..3a340f9 100644 --- a/autoware_utils_pcl/include/autoware_utils_pcl/transform.hpp +++ b/autoware_utils_pcl/include/autoware_utils_pcl/transforms.hpp @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -#ifndef AUTOWARE_UTILS_PCL__TRANSFORM_HPP_ -#define AUTOWARE_UTILS_PCL__TRANSFORM_HPP_ +#ifndef AUTOWARE_UTILS_PCL__TRANSFORMS_HPP_ +#define AUTOWARE_UTILS_PCL__TRANSFORMS_HPP_ #include <Eigen/Core> #include <rclcpp/rclcpp.hpp> @@ -48,4 +48,4 @@ void transform_pointcloud( } } // namespace autoware_utils_pcl -#endif // AUTOWARE_UTILS_PCL__TRANSFORM_HPP_ +#endif // AUTOWARE_UTILS_PCL__TRANSFORMS_HPP_ diff --git a/autoware_utils_pcl/test/src/build.cpp b/autoware_utils_pcl/test/src/build.cpp index 876b6e8..f80650d 100644 --- a/autoware_utils_pcl/test/src/build.cpp +++ b/autoware_utils_pcl/test/src/build.cpp @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include <autoware_utils_pcl/conversion.hpp> #include <autoware_utils_pcl/managed_transform_buffer.hpp> -#include <autoware_utils_pcl/transform.hpp> +#include <autoware_utils_pcl/pcl_conversion.hpp> +#include <autoware_utils_pcl/transforms.hpp> #include <gtest/gtest.h> From 50886063792e95a2f1f3e427565e8dd4de6ab438 Mon Sep 17 00:00:00 2001 From: "Takagi, Isamu" <isamu.takagi@tier4.jp> Date: Wed, 26 Feb 2025 15:41:42 +0900 Subject: [PATCH 5/6] rename package Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp> --- .../autoware_utils/ros/transform_listener.hpp | 4 +-- autoware_utils/package.xml | 2 +- autoware_utils_geometry/CMakeLists.txt | 10 +++++++ .../transform_listener.hpp | 10 +++---- .../package.xml | 5 ++-- autoware_utils_pcl/CMakeLists.txt | 4 --- .../managed_transform_buffer.hpp | 8 +++--- autoware_utils_pcl/package.xml | 3 +-- autoware_utils_pcl/test/src/build.cpp | 23 ---------------- autoware_utils_pcl/test/test_main.cpp | 26 ------------------- autoware_utils_tf2/CMakeLists.txt | 14 ---------- autoware_utils_tf2/README.md | 1 - autoware_utils_tf2/test/src/build.cpp | 21 --------------- autoware_utils_tf2/test/test_main.cpp | 26 ------------------- 14 files changed, 25 insertions(+), 132 deletions(-) create mode 100644 autoware_utils_geometry/CMakeLists.txt rename {autoware_utils_tf2/include/autoware_utils_tf2 => autoware_utils_geometry/include/autoware_utils_geometry}/transform_listener.hpp (91%) rename {autoware_utils_tf2 => autoware_utils_geometry}/package.xml (87%) delete mode 100644 autoware_utils_pcl/test/src/build.cpp delete mode 100644 autoware_utils_pcl/test/test_main.cpp delete mode 100644 autoware_utils_tf2/CMakeLists.txt delete mode 100644 autoware_utils_tf2/README.md delete mode 100644 autoware_utils_tf2/test/src/build.cpp delete mode 100644 autoware_utils_tf2/test/test_main.cpp diff --git a/autoware_utils/include/autoware_utils/ros/transform_listener.hpp b/autoware_utils/include/autoware_utils/ros/transform_listener.hpp index 411a7bf..a2e690f 100644 --- a/autoware_utils/include/autoware_utils/ros/transform_listener.hpp +++ b/autoware_utils/include/autoware_utils/ros/transform_listener.hpp @@ -15,12 +15,12 @@ #ifndef AUTOWARE_UTILS__ROS__TRANSFORM_LISTENER_HPP_ #define AUTOWARE_UTILS__ROS__TRANSFORM_LISTENER_HPP_ -#include <autoware_utils_tf2/transform_listener.hpp> +#include <autoware_utils_geometry/transform_listener.hpp> namespace autoware_utils { -using namespace autoware_utils_tf2; // NOLINT(build/namespaces) +using namespace autoware_utils_geometry; // NOLINT(build/namespaces) } // namespace autoware_utils diff --git a/autoware_utils/package.xml b/autoware_utils/package.xml index 27e7391..9b61de3 100644 --- a/autoware_utils/package.xml +++ b/autoware_utils/package.xml @@ -19,8 +19,8 @@ <depend>autoware_internal_planning_msgs</depend> <depend>autoware_perception_msgs</depend> <depend>autoware_planning_msgs</depend> + <depend>autoware_utils_geometry</depend> <depend>autoware_utils_pcl</depend> - <depend>autoware_utils_tf2</depend> <depend>autoware_vehicle_msgs</depend> <depend>builtin_interfaces</depend> <depend>diagnostic_msgs</depend> diff --git a/autoware_utils_geometry/CMakeLists.txt b/autoware_utils_geometry/CMakeLists.txt new file mode 100644 index 0000000..4f98e18 --- /dev/null +++ b/autoware_utils_geometry/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.14) +project(autoware_utils_geometry) + +find_package(autoware_cmake REQUIRED) +autoware_package() + +if(BUILD_TESTING) +endif() + +ament_auto_package() diff --git a/autoware_utils_tf2/include/autoware_utils_tf2/transform_listener.hpp b/autoware_utils_geometry/include/autoware_utils_geometry/transform_listener.hpp similarity index 91% rename from autoware_utils_tf2/include/autoware_utils_tf2/transform_listener.hpp rename to autoware_utils_geometry/include/autoware_utils_geometry/transform_listener.hpp index 8e894bc..3b006db 100644 --- a/autoware_utils_tf2/include/autoware_utils_tf2/transform_listener.hpp +++ b/autoware_utils_geometry/include/autoware_utils_geometry/transform_listener.hpp @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -#ifndef AUTOWARE_UTILS_TF2__TRANSFORM_LISTENER_HPP_ -#define AUTOWARE_UTILS_TF2__TRANSFORM_LISTENER_HPP_ +#ifndef AUTOWARE_UTILS_GEOMETRY__TRANSFORM_LISTENER_HPP_ +#define AUTOWARE_UTILS_GEOMETRY__TRANSFORM_LISTENER_HPP_ #include <rclcpp/rclcpp.hpp> @@ -26,7 +26,7 @@ #include <memory> #include <string> -namespace autoware_utils_tf2 +namespace autoware_utils_geometry { class TransformListener { @@ -82,6 +82,6 @@ class TransformListener std::shared_ptr<tf2_ros::Buffer> tf_buffer_; std::shared_ptr<tf2_ros::TransformListener> tf_listener_; }; -} // namespace autoware_utils_tf2 +} // namespace autoware_utils_geometry -#endif // AUTOWARE_UTILS_TF2__TRANSFORM_LISTENER_HPP_ +#endif // AUTOWARE_UTILS_GEOMETRY__TRANSFORM_LISTENER_HPP_ diff --git a/autoware_utils_tf2/package.xml b/autoware_utils_geometry/package.xml similarity index 87% rename from autoware_utils_tf2/package.xml rename to autoware_utils_geometry/package.xml index 2503e9e..98fa33c 100644 --- a/autoware_utils_tf2/package.xml +++ b/autoware_utils_geometry/package.xml @@ -1,9 +1,9 @@ <?xml version="1.0"?> <?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> <package format="3"> - <name>autoware_utils_tf2</name> + <name>autoware_utils_geometry</name> <version>1.1.0</version> - <description>The autoware_utils_tf2 package</description> + <description>The autoware_utils_geometry package</description> <maintainer email="egon.kang@autocore.ai">Jian Kang</maintainer> <maintainer email="ryohsuke.mitsudome@tier4.jp">Ryohsuke Mitsudome</maintainer> <maintainer email="esteve.fernandez@tier4.jp">Esteve Fernandez</maintainer> @@ -18,7 +18,6 @@ <depend>rclcpp</depend> <depend>tf2_ros</depend> - <test_depend>ament_cmake_ros</test_depend> <test_depend>ament_lint_auto</test_depend> <test_depend>autoware_lint_common</test_depend> diff --git a/autoware_utils_pcl/CMakeLists.txt b/autoware_utils_pcl/CMakeLists.txt index 288a7b5..516f373 100644 --- a/autoware_utils_pcl/CMakeLists.txt +++ b/autoware_utils_pcl/CMakeLists.txt @@ -5,10 +5,6 @@ find_package(autoware_cmake REQUIRED) autoware_package() if(BUILD_TESTING) - file(GLOB_RECURSE test_files test/**/*.cpp) - ament_add_ros_isolated_gtest(test_${PROJECT_NAME} ${test_files}) - ament_target_dependencies(test_${PROJECT_NAME} autoware_utils_tf2 pcl_conversions pcl_ros) - target_include_directories(test_${PROJECT_NAME} PRIVATE include) endif() ament_auto_package() diff --git a/autoware_utils_pcl/include/autoware_utils_pcl/managed_transform_buffer.hpp b/autoware_utils_pcl/include/autoware_utils_pcl/managed_transform_buffer.hpp index e9de37b..9f5e906 100644 --- a/autoware_utils_pcl/include/autoware_utils_pcl/managed_transform_buffer.hpp +++ b/autoware_utils_pcl/include/autoware_utils_pcl/managed_transform_buffer.hpp @@ -15,7 +15,7 @@ #ifndef AUTOWARE_UTILS_PCL__MANAGED_TRANSFORM_BUFFER_HPP_ #define AUTOWARE_UTILS_PCL__MANAGED_TRANSFORM_BUFFER_HPP_ -#include <autoware_utils_tf2/transform_listener.hpp> +#include <autoware_utils_geometry/transform_listener.hpp> #include <eigen3/Eigen/Core> #include <pcl_ros/transforms.hpp> #include <rclcpp/rclcpp.hpp> @@ -73,7 +73,7 @@ class ManagedTransformBuffer return get_static_transform(target_frame, source_frame, eigen_transform); }; } else { - tf_listener_ = std::make_unique<autoware_utils_tf2::TransformListener>(node); + tf_listener_ = std::make_unique<autoware_utils_geometry::TransformListener>(node); get_transform_ = [this]( const std::string & target_frame, const std::string & source_frame, Eigen::Matrix4f & eigen_transform) { @@ -173,7 +173,7 @@ class ManagedTransformBuffer } // Get the transform from the TF tree - tf_listener_ = std::make_unique<autoware_utils_tf2::TransformListener>(node_); + tf_listener_ = std::make_unique<autoware_utils_geometry::TransformListener>(node_); auto tf = tf_listener_->get_transform( target_frame, source_frame, rclcpp::Time(0), rclcpp::Duration(1000ms)); tf_listener_.reset(); @@ -218,7 +218,7 @@ class ManagedTransformBuffer TFMap buffer_; rclcpp::Node * const node_; - std::unique_ptr<autoware_utils_tf2::TransformListener> tf_listener_; + std::unique_ptr<autoware_utils_geometry::TransformListener> tf_listener_; std::function<bool(const std::string &, const std::string &, Eigen::Matrix4f &)> get_transform_; }; diff --git a/autoware_utils_pcl/package.xml b/autoware_utils_pcl/package.xml index 8530e7f..beb3200 100644 --- a/autoware_utils_pcl/package.xml +++ b/autoware_utils_pcl/package.xml @@ -14,11 +14,10 @@ <buildtool_depend>ament_cmake_auto</buildtool_depend> <buildtool_depend>autoware_cmake</buildtool_depend> - <depend>autoware_utils_tf2</depend> + <depend>autoware_utils_geometry</depend> <depend>pcl_conversions</depend> <depend>pcl_ros</depend> - <test_depend>ament_cmake_ros</test_depend> <test_depend>ament_lint_auto</test_depend> <test_depend>autoware_lint_common</test_depend> diff --git a/autoware_utils_pcl/test/src/build.cpp b/autoware_utils_pcl/test/src/build.cpp deleted file mode 100644 index f80650d..0000000 --- a/autoware_utils_pcl/test/src/build.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2025 The Autoware Contributors -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -#include <autoware_utils_pcl/managed_transform_buffer.hpp> -#include <autoware_utils_pcl/pcl_conversion.hpp> -#include <autoware_utils_pcl/transforms.hpp> - -#include <gtest/gtest.h> - -TEST(AutowareUtilsPcl, Build) -{ -} diff --git a/autoware_utils_pcl/test/test_main.cpp b/autoware_utils_pcl/test/test_main.cpp deleted file mode 100644 index d585664..0000000 --- a/autoware_utils_pcl/test/test_main.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright 2025 The Autoware Contributors -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -#include <rclcpp/rclcpp.hpp> - -#include <gtest/gtest.h> - -int main(int argc, char * argv[]) -{ - testing::InitGoogleTest(&argc, argv); - rclcpp::init(argc, argv); - bool result = RUN_ALL_TESTS(); - rclcpp::shutdown(); - return result; -} diff --git a/autoware_utils_tf2/CMakeLists.txt b/autoware_utils_tf2/CMakeLists.txt deleted file mode 100644 index 8a590f9..0000000 --- a/autoware_utils_tf2/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -cmake_minimum_required(VERSION 3.14) -project(autoware_utils_tf2) - -find_package(autoware_cmake REQUIRED) -autoware_package() - -if(BUILD_TESTING) - file(GLOB_RECURSE test_files test/**/*.cpp) - ament_add_ros_isolated_gtest(test_${PROJECT_NAME} ${test_files}) - ament_target_dependencies(test_${PROJECT_NAME} geometry_msgs rclcpp tf2_ros) - target_include_directories(test_${PROJECT_NAME} PRIVATE include) -endif() - -ament_auto_package() diff --git a/autoware_utils_tf2/README.md b/autoware_utils_tf2/README.md deleted file mode 100644 index 42e60ce..0000000 --- a/autoware_utils_tf2/README.md +++ /dev/null @@ -1 +0,0 @@ -# autoware_utils_tf2 diff --git a/autoware_utils_tf2/test/src/build.cpp b/autoware_utils_tf2/test/src/build.cpp deleted file mode 100644 index 85b60f0..0000000 --- a/autoware_utils_tf2/test/src/build.cpp +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2025 The Autoware Contributors -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -#include <autoware_utils_tf2/transform_listener.hpp> - -#include <gtest/gtest.h> - -TEST(AutowareUtilsTf2, Build) -{ -} diff --git a/autoware_utils_tf2/test/test_main.cpp b/autoware_utils_tf2/test/test_main.cpp deleted file mode 100644 index d585664..0000000 --- a/autoware_utils_tf2/test/test_main.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright 2025 The Autoware Contributors -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -#include <rclcpp/rclcpp.hpp> - -#include <gtest/gtest.h> - -int main(int argc, char * argv[]) -{ - testing::InitGoogleTest(&argc, argv); - rclcpp::init(argc, argv); - bool result = RUN_ALL_TESTS(); - rclcpp::shutdown(); - return result; -} From a561762eb8e5b60adccbc1f21776ace7db83e3b3 Mon Sep 17 00:00:00 2001 From: "Takagi, Isamu" <isamu.takagi@tier4.jp> Date: Wed, 26 Feb 2025 15:42:23 +0900 Subject: [PATCH 6/6] update readme Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp> --- autoware_utils/README.md | 67 --------------------------- autoware_utils_geometry/README.md | 11 +++++ autoware_utils_pcl/README.md | 76 +++++++++++++++++++++++++++++++ 3 files changed, 87 insertions(+), 67 deletions(-) create mode 100644 autoware_utils_geometry/README.md diff --git a/autoware_utils/README.md b/autoware_utils/README.md index 253aa6e..a5597e9 100644 --- a/autoware_utils/README.md +++ b/autoware_utils/README.md @@ -47,7 +47,6 @@ The ROS module provides utilities for working with ROS messages and nodes: - **`debug_publisher.hpp`**: A helper class for publishing debug messages with timestamps. - **`diagnostics_interface.hpp`**: An interface for publishing diagnostic messages. - **`logger_level_configure.hpp`**: Utility for configuring logger levels dynamically. -- **`managed_transform_buffer.hpp`**: A managed buffer for handling static and dynamic transforms. - **`marker_helper.hpp`**: Helper functions for creating and manipulating visualization markers. - **`msg_covariance.hpp`**: Indices for accessing covariance matrices in ROS messages. - **`msg_operation.hpp`**: Overloaded operators for quaternion messages. @@ -56,12 +55,10 @@ The ROS module provides utilities for working with ROS messages and nodes: - **`processing_time_publisher.hpp`**: Publishes processing times as diagnostic messages. - **`published_time_publisher.hpp`**: Tracks and publishes the time when messages are published. - **`self_pose_listener.hpp`**: Listens to the self-pose of the vehicle. -- **`transform_listener.hpp`**: Manages transformation listeners. - **`update_param.hpp`**: Updates parameters from remote nodes. - **`uuid_helper.hpp`**: Utilities for generating and managing UUIDs. - **`wait_for_param.hpp`**: Waits for parameters from remote nodes. - **`debug_traits.hpp`**: Traits for identifying debug message types. -- **`pcl_conversion.hpp`**: Efficient conversion and transformation of PointCloud2 messages to PCL point clouds. #### System Module @@ -72,10 +69,6 @@ The system module provides low-level utilities for performance monitoring and er - **`stop_watch.hpp`**: Measures elapsed time for profiling. - **`time_keeper.hpp`**: Tracks and reports the processing time of various functions. -#### Transform Module - -Efficient methods for transforming and manipulating point clouds. - ## Usage ### Including Headers @@ -140,36 +133,6 @@ int main() { ### Detailed Usage Examples -#### Transform Point Clouds with ManagedTransformBuffer - -```cpp -#include "autoware_utils/ros/managed_transform_buffer.hpp" -#include "sensor_msgs/msg/point_cloud2.hpp" -#include <rclcpp/rclcpp.hpp> - -int main(int argc, char * argv[]) { - rclcpp::init(argc, argv); - auto node = rclcpp::Node::make_shared("transform_node"); - - // Initialize ManagedTransformBuffer - autoware_utils::ManagedTransformBuffer transform_buffer(node, false); - - // Load point cloud data - sensor_msgs::msg::PointCloud2 cloud_in; // Assume this is populated with data - sensor_msgs::msg::PointCloud2 cloud_out; - - // Transform point cloud from "base_link" to "map" frame - if (transform_buffer.transform_pointcloud("map", cloud_in, cloud_out)) { - RCLCPP_INFO(node->get_logger(), "Point cloud transformed successfully."); - } else { - RCLCPP_ERROR(node->get_logger(), "Failed to transform point cloud."); - } - - rclcpp::shutdown(); - return 0; -} -``` - #### Update Parameters Dynamically with update_param.hpp ```cpp @@ -250,36 +213,6 @@ int main(int argc, char * argv[]) { } ``` -#### Efficient Point Cloud Conversion with pcl_conversion.hpp - -```cpp -#include "autoware_utils/ros/pcl_conversion.hpp" -#include "sensor_msgs/msg/point_cloud2.hpp" -#include <pcl/point_types.h> -#include <pcl/PCLPointCloud2.h> -#include <Eigen/Core> -#include <rclcpp/rclcpp.hpp> - -int main(int argc, char * argv[]) { - rclcpp::init(argc, argv); - auto node = rclcpp::Node::make_shared("pcl_conversion_node"); - - // Load point cloud data - sensor_msgs::msg::PointCloud2 cloud_in; // Assume this is populated with data - pcl::PointCloud<pcl::PointXYZ> pcl_cloud; - - // Define transformation matrix - Eigen::Matrix4f transform = Eigen::Matrix4f::Identity(); - // Populate transform matrix with actual values - - // Convert and transform point cloud - autoware_utils::transform_point_cloud_from_ros_msg(cloud_in, pcl_cloud, transform); - - rclcpp::shutdown(); - return 0; -} -``` - #### Handling Debug Message Types with debug_traits.hpp ```cpp diff --git a/autoware_utils_geometry/README.md b/autoware_utils_geometry/README.md new file mode 100644 index 0000000..4fe9ee8 --- /dev/null +++ b/autoware_utils_geometry/README.md @@ -0,0 +1,11 @@ +# autoware_utils_geometry + +## Overview + +The **autoware_utils** library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. +This package provides essential utilities for geometry. +It is extensively used in the Autoware project to handle common tasks such as geometric calculations and message conversions. + +## Design + +- **`transform_listener.hpp`**: Manages transformation listeners. diff --git a/autoware_utils_pcl/README.md b/autoware_utils_pcl/README.md index a448bf5..296c52b 100644 --- a/autoware_utils_pcl/README.md +++ b/autoware_utils_pcl/README.md @@ -1 +1,77 @@ # autoware_utils_pcl + +## Overview + +The **autoware_utils** library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. +This package provides essential utilities for point cloud. +It is extensively used in the Autoware project to handle common tasks such as point cloud transformations. + +## Design + +- **`managed_transform_buffer.hpp`**: A managed buffer for handling static and dynamic transforms. +- **`pcl_conversion.hpp`**: Efficient conversion and transformation of PointCloud2 messages to PCL point clouds. +- **`transforms.hpp`**: Efficient methods for transforming and manipulating point clouds. + +## Example Code Snippets + +### Transform Point Clouds with ManagedTransformBuffer + +```cpp +#include <autoware_utils_pcl/managed_transform_buffer.hpp> +#include <sensor_msgs/msg/point_cloud2.hpp> +#include <rclcpp/rclcpp.hpp> + +int main(int argc, char * argv[]) +{ + rclcpp::init(argc, argv); + auto node = rclcpp::Node::make_shared("transform_node"); + + // Initialize ManagedTransformBuffer + autoware_utils::ManagedTransformBuffer transform_buffer(node, false); + + // Load point cloud data + sensor_msgs::msg::PointCloud2 cloud_in; // Assume this is populated with data + sensor_msgs::msg::PointCloud2 cloud_out; + + // Transform point cloud from "base_link" to "map" frame + if (transform_buffer.transform_pointcloud("map", cloud_in, cloud_out)) { + RCLCPP_INFO(node->get_logger(), "Point cloud transformed successfully."); + } else { + RCLCPP_ERROR(node->get_logger(), "Failed to transform point cloud."); + } + + rclcpp::shutdown(); + return 0; +} +``` + +### Efficient Point Cloud Conversion with pcl_conversion.hpp + +```cpp +#include <autoware_utils_pcl/pcl_conversion.hpp> +#include <sensor_msgs/msg/point_cloud2.hpp> +#include <pcl/point_types.h> +#include <pcl/PCLPointCloud2.h> +#include <Eigen/Core> +#include <rclcpp/rclcpp.hpp> + +int main(int argc, char * argv[]) +{ + rclcpp::init(argc, argv); + auto node = rclcpp::Node::make_shared("pcl_conversion_node"); + + // Load point cloud data + sensor_msgs::msg::PointCloud2 cloud_in; // Assume this is populated with data + pcl::PointCloud<pcl::PointXYZ> pcl_cloud; + + // Define transformation matrix + Eigen::Matrix4f transform = Eigen::Matrix4f::Identity(); + // Populate transform matrix with actual values + + // Convert and transform point cloud + autoware_utils::transform_point_cloud_from_ros_msg(cloud_in, pcl_cloud, transform); + + rclcpp::shutdown(); + return 0; +} +```