Skip to content

Commit

Permalink
fix(lidar_centerpoint): include zero in range of yaw_norm_threshold (#…
Browse files Browse the repository at this point in the history
…1830)

Signed-off-by: Shin-kyoto <58775300+Shin-kyoto@users.noreply.github.com>

Signed-off-by: Shin-kyoto <58775300+Shin-kyoto@users.noreply.github.com>
  • Loading branch information
Shin-kyoto authored Sep 12, 2022
1 parent 6b024cb commit eb9d6ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class CenterPointConfig
circle_nms_dist_threshold_ = circle_nms_dist_threshold;
}

if (yaw_norm_threshold > 0 && yaw_norm_threshold < 1) {
if (yaw_norm_threshold >= 0 && yaw_norm_threshold < 1) {
yaw_norm_threshold_ = yaw_norm_threshold;
}

Expand Down

0 comments on commit eb9d6ad

Please sign in to comment.