-
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.
Merge branch 'main' into chore/add_json_schema_to_twist2accel
- Loading branch information
Showing
21 changed files
with
104 additions
and
57 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
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 |
---|---|---|
|
@@ -37,4 +37,5 @@ endif() | |
ament_auto_package( | ||
INSTALL_TO_SHARE | ||
launch | ||
config | ||
) |
4 changes: 4 additions & 0 deletions
4
...radar_crossing_objects_noise_filter/config/radar_crossing_objects_noise_filter.param.yaml
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,4 @@ | ||
/**: | ||
ros__parameters: | ||
angle_threshold: 1.2210 | ||
velocity_threshold: 1.5 |
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
7 changes: 2 additions & 5 deletions
7
perception/radar_object_clustering/launch/radar_object_clustering.launch.xml
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,15 +1,12 @@ | ||
<launch> | ||
<!-- Input --> | ||
<arg name="input/objects" default="~/input/objects"/> | ||
<!-- Output --> | ||
<arg name="output/objects" default="~/output/objects"/> | ||
<!-- Parameter --> | ||
<arg name="radar_object_clustering_param_path" default="$(find-pkg-share radar_object_clustering)/config/radar_object_clustering.param.yaml"/> | ||
<arg name="param_path" default="$(find-pkg-share radar_object_clustering)/config/radar_object_clustering.param.yaml"/> | ||
|
||
<!-- Node --> | ||
<node pkg="radar_object_clustering" exec="radar_object_clustering_node" name="radar_object_clustering" output="screen"> | ||
<remap from="~/input/objects" to="$(var input/objects)"/> | ||
<remap from="~/output/objects" to="$(var output/objects)"/> | ||
<param from="$(var radar_object_clustering_param_path)"/> | ||
<param from="$(var param_path)"/> | ||
</node> | ||
</launch> |
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 |
---|---|---|
|
@@ -24,5 +24,6 @@ endif() | |
## Package | ||
ament_auto_package( | ||
INSTALL_TO_SHARE | ||
config | ||
launch | ||
) |
6 changes: 6 additions & 0 deletions
6
perception/radar_tracks_msgs_converter/config/radar_tracks_msgs_converter.param.yaml
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,6 @@ | ||
/**: | ||
ros__parameters: | ||
update_rate_hz: 20.0 | ||
use_twist_compensation: true | ||
use_twist_yaw_compensation: false | ||
static_object_speed_threshold: 1.0 |
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 |
---|---|---|
|
@@ -25,5 +25,6 @@ endif() | |
# Package | ||
ament_auto_package( | ||
INSTALL_TO_SHARE | ||
config | ||
launch | ||
) |
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
6 changes: 6 additions & 0 deletions
6
perception/simple_object_merger/config/simple_object_merger.param.yaml
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,6 @@ | ||
/**: | ||
ros__parameters: | ||
update_rate_hz: 20.0 | ||
new_frame_id: "base_link" | ||
timeout_threshold: 1.0 | ||
input_topics: [""] |
13 changes: 2 additions & 11 deletions
13
perception/simple_object_merger/launch/simple_object_merger.launch.xml
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,18 +1,9 @@ | ||
<launch> | ||
<!-- Output --> | ||
<arg name="output/objects" default="~/output/objects"/> | ||
<!-- Parameter --> | ||
<arg name="update_rate_hz" default="20.0"/> | ||
<arg name="new_frame_id" default="base_link"/> | ||
<arg name="timeout_threshold" default="0.1"/> | ||
<arg name="input_topics" default="[]"/> | ||
<arg name="param_path" default="$(find-pkg-share simple_object_merger)/config/simple_object_merger.param.yaml"/> | ||
|
||
<!-- Node --> | ||
<node pkg="simple_object_merger" exec="simple_object_merger_node" name="simple_object_merger" output="screen"> | ||
<remap from="~/output/objects" to="$(var output/objects)"/> | ||
<param name="update_rate_hz" value="$(var update_rate_hz)"/> | ||
<param name="timeout_threshold" value="$(var timeout_threshold)"/> | ||
<param name="new_frame_id" value="$(var new_frame_id)"/> | ||
<param name="input_topics" value="$(var input_topics)"/> | ||
<param from="$(var param_path)"/> | ||
</node> | ||
</launch> |
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 |
---|---|---|
|
@@ -43,5 +43,6 @@ endif() | |
# Package | ||
ament_auto_package( | ||
INSTALL_TO_SHARE | ||
config | ||
launch | ||
) |
3 changes: 3 additions & 0 deletions
3
sensing/radar_tracks_noise_filter/config/radar_tracks_noise_filter.param.yaml
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,3 @@ | ||
/**: | ||
ros__parameters: | ||
velocity_y_threshold: 7.0 |
8 changes: 2 additions & 6 deletions
8
sensing/radar_tracks_noise_filter/launch/radar_tracks_noise_filter.launch.xml
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,17 +1,13 @@ | ||
<launch> | ||
<!-- Input --> | ||
<arg name="input/tracks" default="~/input/tracks"/> | ||
<!-- Output --> | ||
<arg name="output/noise_tracks" default="~/output/noise_tracks"/> | ||
<arg name="output/filtered_tracks" default="~/output/filtered_tracks"/> | ||
<!-- Parameter --> | ||
<arg name="velocity_y_threshold" default="7.0"/> | ||
<arg name="param_path" default="$(find-pkg-share radar_tracks_noise_filter)/config/object_velocity_splitter.param.yaml"/> | ||
|
||
<!-- Node --> | ||
<node pkg="radar_tracks_noise_filter" exec="radar_tracks_noise_filter_node" name="radar_tracks_noise_filter" output="screen"> | ||
<remap from="~/input/tracks" to="$(var input/tracks)"/> | ||
<remap from="~/output/noise_tracks" to="$(var output/noise_tracks)"/> | ||
<remap from="~/output/filtered_tracks" to="$(var output/filtered_tracks)"/> | ||
<param name="velocity_y_threshold" value="$(var velocity_y_threshold)"/> | ||
<param from="$(var param_path)"/> | ||
</node> | ||
</launch> |