We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6abaa23 commit 4808c47Copy full SHA for 4808c47
perception/ground_segmentation/src/ransac_ground_filter_nodelet.cpp
@@ -292,7 +292,7 @@ void RANSACGroundFilterComponent::filter(
292
no_ground_cloud_msg_ptr->header = input->header;
293
no_ground_cloud_msg_ptr->fields = input->fields;
294
no_ground_cloud_msg_ptr->point_step = point_step;
295
- no_ground_cloud_msg_ptr.data.resize(input->data.size());
+ no_ground_cloud_msg_ptr->data.resize(input->data.size());
296
size_t output_size = 0;
297
// use not downsampled pointcloud for extract pointcloud that higher than height threshold
298
for (size_t global_size = 0; global_size < input->data.size(); global_size += point_step) {
0 commit comments