-
Notifications
You must be signed in to change notification settings - Fork 2
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 #8 from jkammerl/groovy-devel
Package reorganization + adding pointcloud-image encoder
- Loading branch information
Showing
25 changed files
with
767 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,19 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
cmake_minimum_required(VERSION 2.8) | ||
project(depthcloudjs) | ||
|
||
find_package(catkin) | ||
|
||
find_package(catkin REQUIRED) | ||
catkin_package() | ||
|
||
## TODO: installation of html/js/css files to CATKIN_PACKAGE_SHARE_DESTINATION | ||
find_package(catkin REQUIRED sensor_msgs image_transport message_filters tf) | ||
|
||
include_directories(SYSTEM ${catkin_INCLUDE_DIRS} | ||
) | ||
|
||
add_executable(${PROJECT_NAME} pointcloud_image_streamer/src/pointcloud_image.cpp) | ||
target_link_libraries(${PROJECT_NAME} ${catkin_LIBRARIES} | ||
) | ||
|
||
install(TARGETS ${PROJECT_NAME} | ||
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} | ||
) | ||
|
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 |
---|---|---|
@@ -1,14 +1,25 @@ | ||
<package> | ||
<name>depthcloudjs</name> | ||
<description> | ||
Decodes a specially encoded RGBD stream and renders it as a | ||
pointcloud in WebGL. | ||
Image streaming node that generates the source image data used to | ||
render pointcloud in WebGL | ||
</description> | ||
<version>0.0.1</version> | ||
<author>Julius Kammerl</author> | ||
<maintainer email="[email protected]">Julius Kammerl</maintainer> | ||
<license>BSD</license> | ||
<url>https://github.com/willowgarage/depthcloudjs</url> | ||
<url>http://ros.org/wiki/depthcloudjs</url> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
|
||
<build_depend>sensor_msgs</build_depend> | ||
<build_depend>image_transport</build_depend> | ||
<build_depend>message_filters</build_depend> | ||
<build_depend>tf</build_depend> | ||
|
||
<run_depend>sensor_msgs</run_depend> | ||
<run_depend>image_transport</run_depend> | ||
<run_depend>message_filters</run_depend> | ||
<run_depend>tf</run_depend> | ||
</package> | ||
|
Oops, something went wrong.