Browse Source

Noeud COmmande

master
_Luc_ 11 years ago
parent
commit
7320c24985
  1. 3
      CMakeLists.txt
  2. 2
      src/filtre.cpp

3
CMakeLists.txt

@ -56,3 +56,6 @@ target_link_libraries(filtreRGB ${catkin_LIBRARIES})
add_executable(normal_estimator src/normal_estimator.cpp)
target_link_libraries(normal_estimator ${catkin_LIBRARIES})
add_dependencies(normal_estimator hand_control_generate_messages_cpp)
add_executable(commande src/commande.cpp)
target_link_libraries(commande ${catkin_LIBRARIES})

2
src/filtre.cpp

@ -1,7 +1,7 @@
#include <ros/ros.h>
#include <pcl_ros/point_cloud.h>
#include <pcl/point_types.h>
#include <pcl/filters/passthrough.h>
typedef pcl::PointXYZRGB Point;
typedef pcl::PointCloud<Point> PointCloud;

Loading…
Cancel
Save