Skip to content

Commit 929b267

Browse files
committed
Remove obsolete ground point segmentation point fields
1 parent 18d7d20 commit 929b267

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

include/continuous_clustering/clustering/continuous_clustering.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,6 @@ struct Point
130130
uint8_t ground_point_label{0};
131131
float height_over_ground{std::nanf("")};
132132
uint8_t debug_ground_point_label{WHITE};
133-
std::shared_ptr<int64_t> pointer_to_global_column_index_of_next_ground_point{};
134-
int local_column_index_of_left_ground_neighbor{0};
135-
int local_column_index_of_right_ground_neighbor{0};
136133

137134
// clustering
138135
bool is_ignored{false};

src/clustering/continuous_clustering.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1056,11 +1056,6 @@ void ContinuousClustering::clearColumns(int64_t from_global_column_index, int64_
10561056
point.ground_point_label = GP_UNKNOWN;
10571057
point.height_over_ground = std::nanf("");
10581058
point.debug_ground_point_label = WHITE;
1059-
// can be cleared because we ensure that at least one rotation is still available when
1060-
// calculating the column range to clear
1061-
// point.pointer_to_global_column_index_of_next_ground_point.reset();
1062-
point.local_column_index_of_left_ground_neighbor = 0;
1063-
point.local_column_index_of_right_ground_neighbor = 0;
10641059

10651060
// clear clustering
10661061
point.is_ignored = false;

0 commit comments

Comments
 (0)