Skip to content

Commit

Permalink
fix(lidar_centerpoint): include zero in range of yaw_norm_threshold (a…
Browse files Browse the repository at this point in the history
…utowarefoundation#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 and 0x126 committed Oct 17, 2022
1 parent 063ddd3 commit 731a4da
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 731a4da

Please sign in to comment.