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

feat: add params and diag about dust-detection #116

Merged
merged 8 commits into from
Sep 28, 2023
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@
contains: [": pandar_ptp"]
timeout: 5.0

dust:
type: diagnostic_aggregator/GenericAnalyzer
path: dust
contains: [": dust_validation"]
timeout: 1.0

gnss:
type: diagnostic_aggregator/AnalyzerGroup
path: gnss
Expand Down
9 changes: 7 additions & 2 deletions aip_x2_launch/launch/pandar_node_container.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,13 @@ def add_launch_arg(name: str, default_value=None):
add_launch_arg("blockage_ratio_threshold", "0.1")
add_launch_arg("horizontal_ring_id", "12")
add_launch_arg("blockage_count_threshold", "50")
add_launch_arg("buffering_frames", "2")
add_launch_arg("buffering_interval", "1")
add_launch_arg("blockage_buffering_frames", "2")
add_launch_arg("blockage_buffering_interval", "1")
add_launch_arg("dust_ratio_threshold", "0.2")
add_launch_arg("dust_count_threshold", "10")
add_launch_arg("dust_kernel_size", "2")
add_launch_arg("dust_buffering_frames", "10")
add_launch_arg("dust_buffering_interval", "1")

add_launch_arg("min_azimuth_deg", "135.0")
add_launch_arg("max_azimuth_deg", "225.0")
Expand Down