|
|
@@ -2,7 +2,7 @@
|
|
|
#include "modulecomm.h"
|
|
|
#include "base_segmenter.hpp"
|
|
|
#include "ground_plane_fitting_segmenter.hpp"
|
|
|
-void * gpoint_out= iv::modulecomm::RegisterSend("lidar_pc",20000000,1);
|
|
|
+void * gpoint_out= iv::modulecomm::RegisterSend("lidar_pc_out",20000000,1);
|
|
|
std::unique_ptr<lidar::segmenter::BaseSegmenter> ground_remover_;
|
|
|
std::unique_ptr<lidar::segmenter::BaseSegmenter> segmenter_;
|
|
|
|
|
|
@@ -90,7 +90,7 @@ int main(int argc, char *argv[])
|
|
|
params.gpf_th_gnds = 0.3;
|
|
|
ground_remover_ = std::unique_ptr<lidar::segmenter::BaseSegmenter>(
|
|
|
new lidar::segmenter::GroundPlaneFittingSegmenter(params));
|
|
|
- gpoint = iv::modulecomm::RegisterRecv("lidar_pc_in",ListenPointCloud);
|
|
|
+ gpoint = iv::modulecomm::RegisterRecv("lidar_pc",ListenPointCloud);
|
|
|
|
|
|
return a.exec();
|
|
|
}
|