-
Notifications
You must be signed in to change notification settings - Fork 683
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(perception_online_evaluator): apply `autoware_` prefix (see below): * In this commit, I did not organize a folder structure. The folder structure will be organized in the next some commits. * The changes will follow the Autoware's guideline as below: - https://autowarefoundation.github.io/autoware-documentation/main/contributing/coding-guidelines/ros-nodes/directory-structure/#package-folder Signed-off-by: Junya Sasaki <[email protected]> * bug(perception_online_evaluator): remove duplicated properties * It seems the `motion_evaluator` is defined and used in the `autoware_planning_evaluator` Signed-off-by: Junya Sasaki <[email protected]> * rename(perception_online_evaluator): move headers under `include/autoware`: * Fixes due to this changes for .hpp/.cpp files will be applied in the next commit Signed-off-by: Junya Sasaki <[email protected]> * fix(perception_online_evaluator): fix include paths * To follow the previous commit Signed-off-by: Junya Sasaki <[email protected]> * rename: `perception_online_evaluator` => `autoware_perception_online_evaluator` Signed-off-by: Junya Sasaki <[email protected]> * style(pre-commit): autofix * bug(autoware_perception_online_evaluator): revert wrongly updated copyright Signed-off-by: Junya Sasaki <[email protected]> * bug(autoware_perception_online_evaluator): `autoware_` prefix is not needed here Signed-off-by: Junya Sasaki <[email protected]> * update: `CODEOWNERS` Signed-off-by: Junya Sasaki <[email protected]> * bug(autoware_perception_online_evaluator): fix a wrong package name Signed-off-by: Junya Sasaki <[email protected]> --------- Signed-off-by: Junya Sasaki <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
d03152b
commit 8418ae9
Showing
30 changed files
with
121 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
39 changes: 39 additions & 0 deletions
39
evaluator/autoware_perception_online_evaluator/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
cmake_minimum_required(VERSION 3.14) | ||
project(autoware_perception_online_evaluator) | ||
|
||
find_package(autoware_cmake REQUIRED) | ||
autoware_package() | ||
|
||
find_package(pluginlib REQUIRED) | ||
|
||
ament_auto_add_library(${PROJECT_NAME} SHARED | ||
src/metrics_calculator.cpp | ||
src/perception_online_evaluator_node.cpp | ||
src/metrics/deviation_metrics.cpp | ||
src/metrics/detection_count.cpp | ||
src/utils/marker_utils.cpp | ||
src/utils/objects_filtering.cpp | ||
) | ||
|
||
rclcpp_components_register_node(${PROJECT_NAME} | ||
PLUGIN "autoware::perception_diagnostics::PerceptionOnlineEvaluatorNode" | ||
EXECUTABLE ${PROJECT_NAME}_node | ||
) | ||
|
||
target_link_libraries(${PROJECT_NAME} glog::glog) | ||
|
||
if(BUILD_TESTING) | ||
ament_add_ros_isolated_gtest(test_perception_online_evaluator_node | ||
test/test_perception_online_evaluator_node.cpp | ||
TIMEOUT 300 | ||
) | ||
target_link_libraries(test_perception_online_evaluator_node | ||
${PROJECT_NAME} | ||
) | ||
endif() | ||
|
||
ament_auto_package( | ||
INSTALL_TO_SHARE | ||
param | ||
launch | ||
) |
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?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>perception_online_evaluator</name> | ||
<name>autoware_perception_online_evaluator</name> | ||
<version>0.40.0</version> | ||
<description>ROS 2 node for evaluating perception</description> | ||
<maintainer email="[email protected]">Fumiya Watanabe</maintainer> | ||
|
@@ -10,6 +10,7 @@ | |
<maintainer email="[email protected]">Kyoichi Sugahara</maintainer> | ||
<maintainer email="[email protected]">Shunsuke Miura</maintainer> | ||
<maintainer email="[email protected]">Yoshi Ri</maintainer> | ||
<maintainer email="[email protected]">Junya Sasaki</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
||
<author email="[email protected]">Kosuke Takeuchi</author> | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.