diff --git a/include/ps_graph_slam/semantic_graph_slam.h b/include/ps_graph_slam/semantic_graph_slam.h index e208daa..dcd3241 100644 --- a/include/ps_graph_slam/semantic_graph_slam.h +++ b/include/ps_graph_slam/semantic_graph_slam.h @@ -18,10 +18,6 @@ // segmented pointcloud acc to detection #include "planar_segmentation/point_cloud_segmentation.h" -// semantic mapping -#include "ps_graph_slam/map_cloud.h" -#include "ps_graph_slam/mapping.h" - class semantic_graph_slam { public: semantic_graph_slam(); @@ -37,13 +33,6 @@ class semantic_graph_slam { private: std::unique_ptr pc_seg_obj_; std::unique_ptr data_ass_obj_; - // mapping* semantic_mapping_obj_; - // std::thread* semantic_mapping_th_; - // std::thread* semantic_mapping_opt_th_; - -public: - // mapping related params - std::vector get3DMap(); private: bool empty_keyframe_queue(); diff --git a/include/semantic_graph_slam_ros.h b/include/semantic_graph_slam_ros.h index 69acfc0..22aa46d 100644 --- a/include/semantic_graph_slam_ros.h +++ b/include/semantic_graph_slam_ros.h @@ -64,8 +64,6 @@ #include "ps_graph_slam/semantic_graph_slam.h" -#include "ps_graph_slam/map_cloud.h" - class semantic_graph_slam_ros { public: diff --git a/launch/octomap.launch b/launch/octomap.launch deleted file mode 100755 index 8464b5f..0000000 --- a/launch/octomap.launch +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/launch/ps_slam_with_snap_pose_bucket_det_drone_data.launch b/launch/ps_slam_with_snap_pose_bucket_det_drone_data.launch deleted file mode 100755 index a1f2a81..0000000 --- a/launch/ps_slam_with_snap_pose_bucket_det_drone_data.launch +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/launch/ps_slam_with_snap_pose_bucket_det_lab_data_with_octomap.launch b/launch/ps_slam_with_snap_pose_bucket_det_lab_data_with_octomap.launch index 1b667c5..ccd171b 100755 --- a/launch/ps_slam_with_snap_pose_bucket_det_lab_data_with_octomap.launch +++ b/launch/ps_slam_with_snap_pose_bucket_det_lab_data_with_octomap.launch @@ -2,7 +2,7 @@ - + @@ -26,7 +26,7 @@ - + diff --git a/launch/ps_slam_with_yolo_TUM.launch b/launch/ps_slam_with_yolo_TUM.launch deleted file mode 100755 index ff2a96e..0000000 --- a/launch/ps_slam_with_yolo_TUM.launch +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/launch/ps_slam_with_yolo_TUM_f1_desk2.launch b/launch/ps_slam_with_yolo_TUM_f1_desk2.launch deleted file mode 100755 index 5268335..0000000 --- a/launch/ps_slam_with_yolo_TUM_f1_desk2.launch +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/launch/ps_slam_with_yolo_TUM_f2.launch b/launch/ps_slam_with_yolo_TUM_f2.launch deleted file mode 100755 index e647d8f..0000000 --- a/launch/ps_slam_with_yolo_TUM_f2.launch +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/launch/ps_slam_with_yolo_TUM_f2_desk.launch b/launch/ps_slam_with_yolo_TUM_f2_desk.launch deleted file mode 100755 index 1af0b38..0000000 --- a/launch/ps_slam_with_yolo_TUM_f2_desk.launch +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/ps_graph_slam/semantic_graph_slam.cpp b/src/ps_graph_slam/semantic_graph_slam.cpp index 4618002..542e268 100644 --- a/src/ps_graph_slam/semantic_graph_slam.cpp +++ b/src/ps_graph_slam/semantic_graph_slam.cpp @@ -389,13 +389,6 @@ void semantic_graph_slam::getDetectedObjectsPose( seg_obj_vec = seg_obj_vec_; } -std::vector semantic_graph_slam::get3DMap() { - std::vector cloud_map_vector; - // cloud_map_vector = semantic_mapping_obj_->getOutputMap(); - - return cloud_map_vector; -} - void semantic_graph_slam::saveGraph(std::string save_graph_path) { graph_slam_->save(save_graph_path); std::cout << "saved the graph at " << save_graph_path << std::endl;