Skip to content
This repository has been archived by the owner on Jan 24, 2019. It is now read-only.

Commit

Permalink
Merge branch 'develop' of https://github.com/pixel217/
Browse files Browse the repository at this point in the history
Conflicts:
	src/driver/src/depthsense_camera_driver.cpp
  • Loading branch information
Myzhar committed May 7, 2015
2 parents 826bdc0 + 7827eb2 commit 6a00971
Show file tree
Hide file tree
Showing 2 changed files with 228 additions and 142 deletions.
14 changes: 11 additions & 3 deletions src/driver/include/depthsense_camera_driver.h
Expand Up @@ -85,10 +85,17 @@ class DepthSenseDriver
ros::Publisher _vertex_reg_pub;
ros::Publisher _accel_pub;

// >>>>> Image transportation
image_transport::ImageTransport _imgTr;
// >>>>> Image transportation RGB
image_transport::ImageTransport rgb_ImgTr;
image_transport::CameraPublisher _rgb_pub;
// <<<<< Image transportation
// <<<<< Image transportation RGB

// >>>>> Image transportation Depth/Confidence
image_transport::ImageTransport depth_ImgTr;
image_transport::CameraPublisher _depth_pub;
image_transport::ImageTransport confidence_ImgTr;
image_transport::CameraPublisher _confidence_pub;
// <<<<< Image transportation Depth/Confidence

DepthSense::Context _context; ///< DepthSense context

Expand All @@ -104,6 +111,7 @@ class DepthSenseDriver
// >>>>> node params
bool _publish_tf; ///< Publish TF if true
bool _enable_rgb; ///< Publish RGB stream if true
bool _enable_depth_confidence; ///< Publish Depth and Confidence stream if true
bool _enable_ptcloud; ///< Publish 3d pointcloud if true.
bool _enable_registered; ///< Publish 3d registered pointcloud if true and @ref _enable_rgb is true and @ref _enable_ptcloud is true
bool _enable_accel; ///< Publish accelerometer data if true
Expand Down

0 comments on commit 6a00971

Please sign in to comment.