Skip to content

Commit dfb4447

Browse files
committed
feat: update recheck threshold for ground cluster classification
1 parent 555b527 commit dfb4447

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

perception/ground_segmentation/src/scan_ground_filter_nodelet.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,7 @@ void ScanGroundFilterComponent::classifyPointCloudGridScan(
407407
const bool is_recheck_area = ground_cluster.getAverageRadius() > grid_mode_switch_radius_;
408408
if (use_recheck_ground_cluster_ && is_recheck_area) {
409409
recheckGroundCluster(
410-
ground_cluster, non_ground_height_threshold_, use_lowest_point_,
411-
out_no_ground_indices);
410+
ground_cluster, non_ground_height_threshold_, use_lowest_point_, out_no_ground_indices);
412411
}
413412
curr_gnd_grid.radius = ground_cluster.getAverageRadius();
414413
curr_gnd_grid.avg_height = ground_cluster.getAverageHeight();

0 commit comments

Comments
 (0)