Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
taichiH committed Nov 19, 2020
1 parent 8abde41 commit b3524ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ void RayGroundFilter::ClassifyPointCloud(const std::vector<PointCloudRH>& in_rad
{
// check if previous point is too far from previous one, if so classify again
if (points_distance > reclass_distance_threshold_ &&
(current_height <= height_threshold && current_height >= -height_threshold))
(current_height <= general_height_threshold && current_height >= -general_height_threshold))
{
current_ground = true;
}
Expand Down

0 comments on commit b3524ec

Please sign in to comment.