forked from ekumenlabs/roscpp_android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ekumenlabs#15 from Intermodalics/pcl_libs
PCL related packages
- Loading branch information
Showing
7 changed files
with
144 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ MAINTAINER Gary Servin <[email protected]> | |
MAINTAINER Juan Ignacio Ubeira <[email protected]> | ||
|
||
# Install basic tools | ||
RUN apt-get update && apt-get install -y wget git unzip tmux python-catkin-tools | ||
RUN apt-get update && apt-get install -y wget git unzip tmux python-catkin-tools python-lxml | ||
|
||
# Install Android NDK | ||
WORKDIR /opt/android/sdk | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- catkin_ws/src/perception_pcl/pcl_ros/CMakeLists.txt | ||
+++ catkin_ws/src/perception_pcl/pcl_ros/CMakeLists.txt | ||
@@ -181,20 +181,20 @@ class_loader_hide_library_symbols(pcl_ros_surface) | ||
|
||
## Tools | ||
|
||
-add_executable(pcd_to_pointcloud tools/pcd_to_pointcloud.cpp) | ||
-target_link_libraries(pcd_to_pointcloud ${Boost_LIBRARIES} ${catkin_LIBRARIES} ${EIGEN3_LIBRARIES} ${PCL_LIBRARIES}) | ||
+#add_executable(pcd_to_pointcloud tools/pcd_to_pointcloud.cpp) | ||
+#target_link_libraries(pcd_to_pointcloud ${Boost_LIBRARIES} ${catkin_LIBRARIES} ${EIGEN3_LIBRARIES} ${PCL_LIBRARIES}) | ||
|
||
-add_executable(pointcloud_to_pcd tools/pointcloud_to_pcd.cpp) | ||
-target_link_libraries(pointcloud_to_pcd ${Boost_LIBRARIES} ${catkin_LIBRARIES} ${EIGEN3_LIBRARY_DIRS} ${PCL_LIBRARIES}) | ||
+#add_executable(pointcloud_to_pcd tools/pointcloud_to_pcd.cpp) | ||
+#target_link_libraries(pointcloud_to_pcd ${Boost_LIBRARIES} ${catkin_LIBRARIES} ${EIGEN3_LIBRARY_DIRS} ${PCL_LIBRARIES}) | ||
|
||
-add_executable(bag_to_pcd tools/bag_to_pcd.cpp) | ||
-target_link_libraries(bag_to_pcd pcl_ros_tf ${Boost_LIBRARIES} ${catkin_LIBRARIES} ${EIGEN3_LIBRARY_DIRS} ${PCL_LIBRARIES}) | ||
+#add_executable(bag_to_pcd tools/bag_to_pcd.cpp) | ||
+#target_link_libraries(bag_to_pcd pcl_ros_tf ${Boost_LIBRARIES} ${catkin_LIBRARIES} ${EIGEN3_LIBRARY_DIRS} ${PCL_LIBRARIES}) | ||
|
||
-add_executable(convert_pcd_to_image tools/convert_pcd_to_image.cpp) | ||
-target_link_libraries(convert_pcd_to_image ${Boost_LIBRARIES} ${catkin_LIBRARIES} ${EIGEN3_LIBRARIES} ${PCL_LIBRARIES}) | ||
+#add_executable(convert_pcd_to_image tools/convert_pcd_to_image.cpp) | ||
+#target_link_libraries(convert_pcd_to_image ${Boost_LIBRARIES} ${catkin_LIBRARIES} ${EIGEN3_LIBRARIES} ${PCL_LIBRARIES}) | ||
|
||
-add_executable(convert_pointcloud_to_image tools/convert_pointcloud_to_image.cpp) | ||
-target_link_libraries(convert_pointcloud_to_image ${Boost_LIBRARIES} ${catkin_LIBRARIES} ${EIGEN3_LIBRARIES} ${PCL_LIBRARIES}) | ||
+#add_executable(convert_pointcloud_to_image tools/convert_pointcloud_to_image.cpp) | ||
+#target_link_libraries(convert_pointcloud_to_image ${Boost_LIBRARIES} ${catkin_LIBRARIES} ${EIGEN3_LIBRARIES} ${PCL_LIBRARIES}) | ||
|
||
## Downloads | ||
|
||
@@ -231,11 +231,11 @@ install( | ||
pcl_ros_filters | ||
pcl_ros_surface | ||
pcl_ros_segmentation | ||
- pcd_to_pointcloud | ||
- pointcloud_to_pcd | ||
- bag_to_pcd | ||
- convert_pcd_to_image | ||
- convert_pointcloud_to_image | ||
+# pcd_to_pointcloud | ||
+# pointcloud_to_pcd | ||
+# bag_to_pcd | ||
+# convert_pcd_to_image | ||
+# convert_pointcloud_to_image | ||
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} | ||
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} | ||
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} |