Skip to content

Commit

Permalink
fix(nebula node container): fix if condition for ring outlier filter (#…
Browse files Browse the repository at this point in the history
…92)

fix nebula node container

Signed-off-by: vividf <yihsiang.fang@tier4.jp>
  • Loading branch information
vividf authored Jun 11, 2024
1 parent bfe2260 commit a74a6cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def create_parameter_dict(*args):
)

# Ring Outlier Filter is the last component in the pipeline, so control the output frame here
if LaunchConfiguration("output_as_sensor_frame").perform(context):
if LaunchConfiguration("output_as_sensor_frame").perform(context).lower() == "true":
ring_outlier_filter_parameters = {"output_frame": LaunchConfiguration("frame_id")}
else:
ring_outlier_filter_parameters = {
Expand Down

0 comments on commit a74a6cc

Please sign in to comment.