Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tracking_object_merger): fix bug and rework parameters #6168

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@

# logging settings
enable_logging: false
log_file_path: "/tmp/decorative_tracker_merger.log"
logging_file_path: "association_log.json"
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
<arg name="output" default="merged_object"/>
<arg name="data_association_matrix_path" default="$(find-pkg-share tracking_object_merger)/config/data_association_matrix.param.yaml"/>
<arg name="merge_options_path" default="$(find-pkg-share tracking_object_merger)/config/decorative_tracker_merger_policy.param.yaml"/>
<arg name="enable_logging" default="true"/>
<arg name="logging_file_path" default="association_log.json"/>
<arg name="node_param_file_path" default="$(find-pkg-share tracking_object_merger)/config/decorative_tracker_merger.param.yaml"/>

<node pkg="tracking_object_merger" exec="decorative_tracker_merger" name="$(anon decorative_tracker_merger)" output="screen">
Expand All @@ -15,7 +13,5 @@
<remap from="output/object" to="$(var output)"/>
<param from="$(var data_association_matrix_path)"/>
<param from="$(var node_param_file_path)"/>
<param name="enable_logging" value="$(var enable_logging)"/>
<param name="logging_file_path" value="$(var logging_file_path)"/>
</node>
</launch>
Loading