Skip to content

Commit afc4fd4

Browse files
authored
fix(ground_segmentation launch): fix ground segmentation concatenate node and timeout (#1283)
* fix: add offset time for ground_segmentation concat Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp> * chore: fix ground_segmentation launch Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp> * fix: ground_seg concat node Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp> * fix: CI check Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp> --------- Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
1 parent 022961e commit afc4fd4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

launch/tier4_perception_launch/launch/obstacle_segmentation/ground_segmentation/ground_segmentation.launch.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -434,17 +434,17 @@ def create_single_frame_outlier_filter_components(input_topic, output_topic, con
434434
def get_additional_lidars_concatenated_component(input_topics, output_topic):
435435
return ComposableNode(
436436
package="pointcloud_preprocessor",
437-
plugin="pointcloud_preprocessor::PointCloudConcatenateDataSynchronizerComponent",
437+
plugin="pointcloud_preprocessor::PointCloudConcatenationComponent",
438438
name="concatenate_data",
439439
remappings=[
440-
("~/input/odom", "/localization/kinematic_state"),
441440
("output", output_topic),
442441
],
443442
parameters=[
444443
{
445444
"input_topics": input_topics,
446445
"output_frame": LaunchConfiguration("base_frame"),
447-
"input_twist_topic_type": "odom",
446+
"approximate_sync": True,
447+
"timeout_sec": 0.095,
448448
}
449449
],
450450
extra_arguments=[{"use_intra_process_comms": LaunchConfiguration("use_intra_process")}],

0 commit comments

Comments
 (0)