Commit 471c870 1 parent 30e2e6a commit 471c870 Copy full SHA for 471c870
File tree 5 files changed +13
-13
lines changed
perception/detection_by_tracker
5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ include_directories(
24
24
)
25
25
26
26
ament_auto_add_library(${PROJECT_NAME} SHARED
27
- src/node/ detection_by_tracker_node.cpp
27
+ src/detection_by_tracker_node.cpp
28
28
src/tracker/tracker_handler.cpp
29
29
)
30
30
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef TOOL__DEBUGGER_HPP_
16
- #define TOOL__DEBUGGER_HPP_
15
+ #ifndef DEBUGGER__DEBUGGER_HPP_
16
+ #define DEBUGGER__DEBUGGER_HPP_
17
17
18
18
#include " autoware/universe_utils/ros/debug_publisher.hpp"
19
19
#include " autoware/universe_utils/system/stop_watch.hpp"
@@ -120,4 +120,4 @@ class Debugger
120
120
};
121
121
} // namespace autoware::detection_by_tracker
122
122
123
- #endif // TOOL__DEBUGGER_HPP_
123
+ #endif // DEBUGGER__DEBUGGER_HPP_
File renamed without changes.
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef NODE__DETECTION_BY_TRACKER_NODE_HPP_
16
- #define NODE__DETECTION_BY_TRACKER_NODE_HPP_
15
+ #ifndef DETECTION_BY_TRACKER_NODE_HPP_
16
+ #define DETECTION_BY_TRACKER_NODE_HPP_
17
17
18
- #include " ../tool/debugger.hpp"
19
- #include " ../tool/utils.hpp"
20
- #include " ../tracker/tracker_handler.hpp"
21
18
#include " autoware/shape_estimation/shape_estimator.hpp"
22
19
#include " autoware/universe_utils/ros/published_time_publisher.hpp"
20
+ #include " debugger/debugger.hpp"
23
21
#include " euclidean_cluster/euclidean_cluster.hpp"
24
22
#include " euclidean_cluster/utils.hpp"
25
23
#include " euclidean_cluster/voxel_grid_based_euclidean_cluster.hpp"
24
+ #include " tracker/tracker_handler.hpp"
25
+ #include " utils/utils.hpp"
26
26
27
27
#include < rclcpp/rclcpp.hpp>
28
28
@@ -102,4 +102,4 @@ class DetectionByTracker : public rclcpp::Node
102
102
};
103
103
} // namespace autoware::detection_by_tracker
104
104
105
- #endif // NODE__DETECTION_BY_TRACKER_NODE_HPP_
105
+ #endif // DETECTION_BY_TRACKER_NODE_HPP_
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef TOOL__UTILS_HPP_
16
- #define TOOL__UTILS_HPP_
15
+ #ifndef UTILS__UTILS_HPP_
16
+ #define UTILS__UTILS_HPP_
17
17
18
18
#include " autoware_perception_msgs/msg/object_classification.hpp"
19
19
@@ -47,4 +47,4 @@ struct TrackerIgnoreLabel
47
47
} // namespace utils
48
48
} // namespace autoware::detection_by_tracker
49
49
50
- #endif // TOOL__UTILS_HPP_
50
+ #endif // UTILS__UTILS_HPP_
You can’t perform that action at this time.
0 commit comments