File tree 14 files changed +22
-21
lines changed
launch/tier4_perception_launch
launch/traffic_light_recognition
perception/autoware_crosswalk_traffic_light_estimator
include/autoware_crosswalk_traffic_light_estimator
14 files changed +22
-21
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ map/util/lanelet2_map_preprocessor/** anh.nguyen.2@tier4.jp kento.yabuuchi.2@tie
106
106
perception /bytetrack /** manato.hirabayashi@tier4.jp yoshi.ri@tier4.jp
107
107
perception /cluster_merger /** dai.nguyen@tier4.jp shunsuke.miura@tier4.jp yukihiro.saito@tier4.jp
108
108
perception /compare_map_segmentation /** abrahammonrroy@yahoo.com dai.nguyen@tier4.jp yukihiro.saito@tier4.jp
109
- perception /crosswalk_traffic_light_estimator /** satoshi.ota@tier4.jp shunsuke.miura@tier4.jp tao.zhong@tier4.jp
109
+ perception /autoware_crosswalk_traffic_light_estimator /** satoshi.ota@tier4.jp shunsuke.miura@tier4.jp tao.zhong@tier4.jp
110
110
perception /detected_object_feature_remover /** tomoya.kimura@tier4.jp
111
111
perception /detected_object_validation /** dai.nguyen@tier4.jp shintaro.tomie@tier4.jp shunsuke.miura@tier4.jp yoshi.ri@tier4.jp yukihiro.saito@tier4.jp
112
112
perception /detection_by_tracker /** taekjin.lee@tier4.jp yoshi.ri@tier4.jp yukihiro.saito@tier4.jp
Original file line number Diff line number Diff line change 17
17
<arg name =" external/traffic_signals" default =" /perception/traffic_light_recognition/external/traffic_signals" />
18
18
<arg name =" output/traffic_signals" default =" /perception/traffic_light_recognition/traffic_signals" />
19
19
<arg name =" use_crosswalk_traffic_light_estimator" default =" true" description =" output pedestrian's traffic light signals" />
20
- <arg name =" crosswalk_traffic_light_estimator_param_file" default =" $(find-pkg-share crosswalk_traffic_light_estimator )/config/crosswalk_traffic_light_estimator.param.yaml" />
20
+ <arg name =" crosswalk_traffic_light_estimator_param_file" default =" $(find-pkg-share autoware_crosswalk_traffic_light_estimator )/config/crosswalk_traffic_light_estimator.param.yaml" />
21
21
<arg name =" image_number" default =" 1" description =" choose image raw number(1-2)" />
22
22
<arg name =" namespace1" default =" camera6" />
23
23
<arg name =" namespace2" default =" camera7" />
158
158
</group >
159
159
160
160
<group if =" $(var use_crosswalk_traffic_light_estimator)" >
161
- <node pkg =" crosswalk_traffic_light_estimator " exec =" crosswalk_traffic_light_estimator_node" name =" crosswalk_traffic_light_estimator" output =" screen" >
161
+ <node pkg =" autoware_crosswalk_traffic_light_estimator " exec =" crosswalk_traffic_light_estimator_node" name =" crosswalk_traffic_light_estimator" output =" screen" >
162
162
<remap from =" ~/input/vector_map" to =" /map/vector_map" />
163
163
<remap from =" ~/input/route" to =" /planning/mission_planning/route" />
164
164
<remap from =" ~/input/classified/traffic_signals" to =" $(var judged/traffic_signals)" />
Original file line number Diff line number Diff line change 12
12
<buildtool_depend >ament_cmake_auto</buildtool_depend >
13
13
<buildtool_depend >autoware_cmake</buildtool_depend >
14
14
15
+ <exec_depend >autoware_crosswalk_traffic_light_estimator</exec_depend >
15
16
<exec_depend >autoware_map_based_prediction</exec_depend >
16
17
<exec_depend >cluster_merger</exec_depend >
17
18
<exec_depend >compare_map_segmentation</exec_depend >
18
- <exec_depend >crosswalk_traffic_light_estimator</exec_depend >
19
19
<exec_depend >detected_object_feature_remover</exec_depend >
20
20
<exec_depend >detected_object_validation</exec_depend >
21
21
<exec_depend >detection_by_tracker</exec_depend >
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.5)
2
- project (crosswalk_traffic_light_estimator )
2
+ project (autoware_crosswalk_traffic_light_estimator )
3
3
4
4
find_package (autoware_cmake REQUIRED)
5
5
autoware_package()
@@ -10,12 +10,12 @@ autoware_package()
10
10
11
11
include_directories ()
12
12
13
- ament_auto_add_library(crosswalk_traffic_light_estimator SHARED
13
+ ament_auto_add_library(autoware_crosswalk_traffic_light_estimator SHARED
14
14
src/node.cpp
15
15
)
16
16
17
- rclcpp_components_register_node(crosswalk_traffic_light_estimator
18
- PLUGIN "traffic_light ::CrosswalkTrafficLightEstimatorNode"
17
+ rclcpp_components_register_node(autoware_crosswalk_traffic_light_estimator
18
+ PLUGIN "autoware::crosswalk_traffic_light_estimator ::CrosswalkTrafficLightEstimatorNode"
19
19
EXECUTABLE crosswalk_traffic_light_estimator_node
20
20
)
21
21
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 CROSSWALK_TRAFFIC_LIGHT_ESTIMATOR__NODE_HPP_
16
- #define CROSSWALK_TRAFFIC_LIGHT_ESTIMATOR__NODE_HPP_
15
+ #ifndef AUTOWARE_CROSSWALK_TRAFFIC_LIGHT_ESTIMATOR__NODE_HPP_
16
+ #define AUTOWARE_CROSSWALK_TRAFFIC_LIGHT_ESTIMATOR__NODE_HPP_
17
17
18
18
#include < rclcpp/rclcpp.hpp>
19
19
#include < tier4_autoware_utils/ros/debug_publisher.hpp>
36
36
#include < unordered_map>
37
37
#include < utility>
38
38
#include < vector>
39
- namespace traffic_light
39
+ namespace autoware ::crosswalk_traffic_light_estimator
40
40
{
41
41
42
42
using autoware_map_msgs::msg::LaneletMapBin;
@@ -117,6 +117,6 @@ class CrosswalkTrafficLightEstimatorNode : public rclcpp::Node
117
117
std::shared_ptr<DebugPublisher> pub_processing_time_;
118
118
};
119
119
120
- } // namespace traffic_light
120
+ } // namespace autoware::crosswalk_traffic_light_estimator
121
121
122
- #endif // CROSSWALK_TRAFFIC_LIGHT_ESTIMATOR__NODE_HPP_
122
+ #endif // AUTOWARE_CROSSWALK_TRAFFIC_LIGHT_ESTIMATOR__NODE_HPP_
Original file line number Diff line number Diff line change 11
11
limitations under the License.
12
12
-->
13
13
<launch >
14
- <arg name =" crosswalk_traffic_light_estimator_param_file" default =" $(find-pkg-share crosswalk_traffic_light_estimator )/config/crosswalk_traffic_light_estimator.param.yaml" />
14
+ <arg name =" crosswalk_traffic_light_estimator_param_file" default =" $(find-pkg-share autoware_crosswalk_traffic_light_estimator )/config/crosswalk_traffic_light_estimator.param.yaml" />
15
15
16
- <node pkg =" crosswalk_traffic_light_estimator " exec =" crosswalk_traffic_light_estimator_node" name =" crosswalk_traffic_light_estimator" output =" screen" >
16
+ <node pkg =" autoware_crosswalk_traffic_light_estimator " exec =" crosswalk_traffic_light_estimator_node" name =" crosswalk_traffic_light_estimator" output =" screen" >
17
17
<remap from =" ~/input/vector_map" to =" /map/vector_map" />
18
18
<remap from =" ~/input/route" to =" /planning/mission_planning/route" />
19
19
<remap from =" ~/input/classified/traffic_signals" to =" classified/traffic_signals" />
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package format =" 2" >
3
- <name >crosswalk_traffic_light_estimator </name >
3
+ <name >autoware_crosswalk_traffic_light_estimator </name >
4
4
<version >0.1.0</version >
5
- <description >The crosswalk_traffic_light_estimator package</description >
5
+ <description >The autoware_crosswalk_traffic_light_estimator package</description >
6
6
7
7
<maintainer email =" satoshi.ota@tier4.jp" >Satoshi Ota</maintainer >
8
8
<maintainer email =" shunsuke.miura@tier4.jp" >Shunsuke Miura</maintainer >
File renamed without changes.
Original file line number Diff line number Diff line change 11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
- #include " crosswalk_traffic_light_estimator /node.hpp"
14
+ #include " autoware_crosswalk_traffic_light_estimator /node.hpp"
15
15
16
16
#include < lanelet2_extension/regulatory_elements/Forward.hpp>
17
17
#include < lanelet2_extension/utility/message_conversion.hpp>
21
21
#include < utility>
22
22
#include < vector>
23
23
24
- namespace traffic_light
24
+ namespace autoware ::crosswalk_traffic_light_estimator
25
25
{
26
26
namespace
27
27
{
@@ -538,8 +538,9 @@ void CrosswalkTrafficLightEstimatorNode::removeDuplicateIds(TrafficSignalArray &
538
538
signals.end ());
539
539
}
540
540
541
- } // namespace traffic_light
541
+ } // namespace autoware::crosswalk_traffic_light_estimator
542
542
543
543
#include < rclcpp_components/register_node_macro.hpp>
544
544
545
- RCLCPP_COMPONENTS_REGISTER_NODE (traffic_light::CrosswalkTrafficLightEstimatorNode)
545
+ RCLCPP_COMPONENTS_REGISTER_NODE (
546
+ autoware::crosswalk_traffic_light_estimator::CrosswalkTrafficLightEstimatorNode)
You can’t perform that action at this time.
0 commit comments