Skip to content

Commit

Permalink
wet repo
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelmassot committed Apr 30, 2013
1 parent c272c67 commit e21a25c
Show file tree
Hide file tree
Showing 21 changed files with 175 additions and 226 deletions.
17 changes: 0 additions & 17 deletions CMakeLists.txt

This file was deleted.

1 change: 0 additions & 1 deletion Makefile

This file was deleted.

48 changes: 16 additions & 32 deletions bag_tools/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,38 +1,22 @@
cmake_minimum_required(VERSION 2.4.6)
include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake)
cmake_minimum_required(VERSION 2.8.3)
project(bag_tools)

# Set the build type. Options are:
# Coverage : w/ debug symbols, w/o optimization, w/ code-coverage
# Debug : w/ debug symbols, w/o optimization
# Release : w/o debug symbols, w/ optimization
# RelWithDebInfo : w/ debug symbols, w/ optimization
# MinSizeRel : w/o debug symbols, w/ optimization, stripped binaries
#set(ROS_BUILD_TYPE RelWithDebInfo)
find_package(catkin REQUIRED COMPONENTS rospy rosbag sensor_msgs cv_bridge message_filters image_proc stereo_image_proc image_geometry camera_calibration_parsers)
find_package(Boost REQUIRED COMPONENTS signals thread)
find_package(OpenCV REQUIRED)

rosbuild_init()
catkin_package(
INCLUDE_DIRS include
CATKIN_DEPENDS rosbag
)

#set the default path for built executables to the "bin" directory
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
#set the default path for built libraries to the "lib" directory
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
include_directories(include ${Boost_INCLUDE_DIRS} ${catkin_INCLUDE_DIRS})

#uncomment if you have defined messages
#rosbuild_genmsg()
#uncomment if you have defined services
#rosbuild_gensrv()
add_executable(extract_images src/extract_images.cpp)
add_executable(extract_stereo_images src/extract_stereo_images.cpp)
add_executable(process_stereo src/process_stereo.cpp)

rosbuild_add_boost_directories()
rosbuild_add_executable(extract_images src/extract_images.cpp)
rosbuild_add_executable(extract_stereo_images src/extract_stereo_images.cpp)
rosbuild_add_executable(process_stereo src/process_stereo.cpp)
target_link_libraries(extract_images ${Boost_LIBRARIES} ${OpenCV_LIBRARIES} ${catkin_LIBRARIES})
target_link_libraries(extract_stereo_images ${Boost_LIBRARIES} ${OpenCV_LIBRARIES} ${catkin_LIBRARIES})
target_link_libraries(process_stereo ${Boost_LIBRARIES} ${OpenCV_LIBRARIES} ${catkin_LIBRARIES})

rosbuild_link_boost(extract_images signals)
rosbuild_link_boost(extract_stereo_images signals)
rosbuild_link_boost(process_stereo signals)
#common commands for building c++ executables and libraries
#rosbuild_add_library(${PROJECT_NAME} src/example.cpp)
#target_link_libraries(${PROJECT_NAME} another_library)
#rosbuild_add_boost_directories()
#rosbuild_link_boost(${PROJECT_NAME} thread)
#rosbuild_add_executable(example examples/example.cpp)
#target_link_libraries(example ${PROJECT_NAME})
1 change: 0 additions & 1 deletion bag_tools/Makefile

This file was deleted.

24 changes: 0 additions & 24 deletions bag_tools/manifest.xml

This file was deleted.

37 changes: 37 additions & 0 deletions bag_tools/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<package>
<name>bag_tools</name>
<version>0.0.1</version>
<description>ROS tools and scripts related to bagfiles</description>
<maintainer email="[email protected]">Miquel Massot</maintainer>

<license>BSD</license>

<url type="website">http://ros.org/wiki/bag_tools</url>
<!-- <url type="bugtracker"></url> -->

<author email="[email protected]">Stephan Wirth</author>
<author email="[email protected]">Miquel Massot</author>

<buildtool_depend>catkin</buildtool_depend>
<build_depend>rospy</build_depend>
<build_depend>rosbag</build_depend>
<build_depend>sensor_msgs</build_depend>
<build_depend>cv_bridge</build_depend>
<build_depend>message_filters</build_depend>
<build_depend>image_proc</build_depend>
<build_depend>stereo_image_proc</build_depend>
<build_depend>image_geometry</build_depend>
<build_depend>camera_calibration_parsers</build_depend>
<run_depend>rospy</run_depend>
<run_depend>rosbag</run_depend>
<run_depend>sensor_msgs</run_depend>
<run_depend>cv_bridge</run_depend>
<run_depend>message_filters</run_depend>
<run_depend>image_proc</run_depend>
<run_depend>stereo_image_proc</run_depend>
<run_depend>image_geometry</run_depend>
<run_depend>camera_calibration_parsers</run_depend>

<export>
</export>
</package>
32 changes: 4 additions & 28 deletions launch_tools/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,30 +1,6 @@
cmake_minimum_required(VERSION 2.4.6)
include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake)
cmake_minimum_required(VERSION 2.8.3)
project(launch_tools)

# Set the build type. Options are:
# Coverage : w/ debug symbols, w/o optimization, w/ code-coverage
# Debug : w/ debug symbols, w/o optimization
# Release : w/o debug symbols, w/ optimization
# RelWithDebInfo : w/ debug symbols, w/ optimization
# MinSizeRel : w/o debug symbols, w/ optimization, stripped binaries
#set(ROS_BUILD_TYPE RelWithDebInfo)
find_package(catkin REQUIRED COMPONENTS rospy roslib)

rosbuild_init()

#set the default path for built executables to the "bin" directory
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
#set the default path for built libraries to the "lib" directory
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)

#uncomment if you have defined messages
#rosbuild_genmsg()
#uncomment if you have defined services
#rosbuild_gensrv()

#common commands for building c++ executables and libraries
#rosbuild_add_library(${PROJECT_NAME} src/example.cpp)
#target_link_libraries(${PROJECT_NAME} another_library)
#rosbuild_add_boost_directories()
#rosbuild_link_boost(${PROJECT_NAME} thread)
#rosbuild_add_executable(example examples/example.cpp)
#target_link_libraries(example ${PROJECT_NAME})
catkin_package()
1 change: 0 additions & 1 deletion launch_tools/Makefile

This file was deleted.

16 changes: 0 additions & 16 deletions launch_tools/manifest.xml

This file was deleted.

20 changes: 20 additions & 0 deletions launch_tools/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<package>
<name>launch_tools</name>
<version>0.0.1</version>
<description>ROS tools and scripts related to launchfiles</description>
<maintainer email="[email protected]">Miquel Massot</maintainer>

<license>BSD</license>

<url type="website">http://ros.org/wiki/launch_tools</url>

<author email="[email protected]">Stephan Wirth</author>
<author email="[email protected]">Miquel Massot</author>

<buildtool_depend>catkin</buildtool_depend>
<build_depend>rospy</build_depend>
<build_depend>roslib</build_depend>
<run_depend>rospy</run_depend>
<run_depend>roslib</run_depend>

</package>
48 changes: 14 additions & 34 deletions pointcloud_tools/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,40 +1,20 @@
cmake_minimum_required(VERSION 2.4.6)
include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake)
cmake_minimum_required(VERSION 2.8.3)
project(pointcloud_tools)

# Set the build type. Options are:
# Coverage : w/ debug symbols, w/o optimization, w/ code-coverage
# Debug : w/ debug symbols, w/o optimization
# Release : w/o debug symbols, w/ optimization
# RelWithDebInfo : w/ debug symbols, w/ optimization
# MinSizeRel : w/o debug symbols, w/ optimization, stripped binaries
#set(ROS_BUILD_TYPE RelWithDebInfo)
find_package(catkin REQUIRED COMPONENTS roscpp pcl_ros std_msgs sensor_msgs )
find_package(pcl REQUIRED )

rosbuild_init()
catkin_package()

#set the default path for built executables to the "bin" directory
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
#set the default path for built libraries to the "lib" directory
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
include_directories(/usr/include/vtk-5.8 ${catkin_INCLUDE_DIRS} ${pcl_INCLUDE_DIRS})

#uncomment if you have defined messages
#rosbuild_genmsg()
#uncomment if you have defined services
#rosbuild_gensrv()
add_executable(pointcloud_mapper src/pointcloud_mapper.cpp)
add_executable(pointcloud_filtering src/pointcloud_filtering.cpp)
add_executable(pcd_publisher src/pcd_publisher.cpp)
add_executable(pointcloud_viewer src/pointcloud_viewer.cpp)

#common commands for building c++ executables and libraries
#rosbuild_add_library(${PROJECT_NAME} src/example.cpp)
#target_link_libraries(${PROJECT_NAME} another_library)
#rosbuild_add_boost_directories()
#rosbuild_link_boost(${PROJECT_NAME} thread)
#rosbuild_add_executable(example examples/example.cpp)
#target_link_libraries(example ${PROJECT_NAME})

include_directories(/usr/include/vtk-5.8)

rosbuild_add_executable(pointcloud_mapper src/pointcloud_mapper.cpp)
rosbuild_add_executable(pointcloud_filtering src/pointcloud_filtering.cpp)
rosbuild_add_executable(pcd_publisher src/pcd_publisher.cpp)
rosbuild_add_executable(pointcloud_viewer src/pointcloud_viewer.cpp)

target_link_libraries(pointcloud_viewer ${PCL_LIBRARIES} libvtkCommon.so libvtkFiltering.so libvtkRendering.so)
target_link_libraries(pointcloud_viewer ${PCL_LIBRARIES} ${catkin_LIBRARIES} libvtkCommon.so libvtkFiltering.so libvtkRendering.so)
target_link_libraries(pcd_publisher ${PCL_LIBRARIES} ${catkin_LIBRARIES})
target_link_libraries(pointcloud_mapper ${PCL_LIBRARIES} ${catkin_LIBRARIES})
target_link_libraries(pointcloud_filtering ${PCL_LIBRARIES} ${catkin_LIBRARIES})

1 change: 0 additions & 1 deletion pointcloud_tools/Makefile

This file was deleted.

20 changes: 0 additions & 20 deletions pointcloud_tools/manifest.xml

This file was deleted.

27 changes: 27 additions & 0 deletions pointcloud_tools/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<package>
<name>pointcloud_tools</name>
<version>0.0.1</version>
<description>pointcloud_tools</description>
<maintainer email="[email protected]">Pep Lluis Negre</maintainer>

<license>BSD</license>

<url type="website">http://ros.org/wiki/pointcloud_tools</url>
<!-- <url type="bugtracker"></url> -->

<author email="[email protected]">Pep Lluis Negre</author>

<buildtool_depend>catkin</buildtool_depend>
<build_depend>roscpp</build_depend>
<build_depend>pcl_ros</build_depend>
<build_depend>std_msgs</build_depend>
<build_depend>sensor_msgs</build_depend>
<run_depend>roscpp</run_depend>
<run_depend>pcl_ros</run_depend>
<run_depend>std_msgs</run_depend>
<run_depend>sensor_msgs</run_depend>

<export>

</export>
</package>
4 changes: 4 additions & 0 deletions srv_tools/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
cmake_minimum_required(VERSION 2.8.3)
project(srv_tools)
find_package(catkin REQUIRED)
catkin_metapackage()
24 changes: 24 additions & 0 deletions srv_tools/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<package>
<name>srv_tools</name>
<version>0.0.1</version>
<description>Stack with interesting ROS tools</description>
<maintainer email="[email protected]">Miquel Massot</maintainer>

<license>BSD</license>

<url type="website">http://ros.org/wiki/srv_tools</url>
<!-- <url type="bugtracker"></url> -->

<author email="[email protected]">Stephan Wirth</author>
<author email="[email protected]">Miquel Massot</author>

<buildtool_depend>catkin</buildtool_depend>
<run_depend>launch_tools</run_depend>
<run_depend>tf_tools</run_depend>
<run_depend>pointcloud_tools</run_depend>
<run_depend>bag_tools</run_depend>

<export>
<metapackage/>
</export>
</package>
9 changes: 0 additions & 9 deletions stack.xml

This file was deleted.

Loading

0 comments on commit e21a25c

Please sign in to comment.