Skip to content

Commit

Permalink
Merge remote-tracking branch 'otcshare/indigo-devel' into indigo-next
Browse files Browse the repository at this point in the history
Merge in the Change log history and Mark's white space last minute
fixes. Mark, please do not "fix" white space in releases.
  • Loading branch information
reaganlo committed Mar 18, 2016
2 parents 4480a6f + 199e42c commit f8f234d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
16 changes: 16 additions & 0 deletions camera/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
Changelog for package realsense_camera
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.0.1 (2016-03-17)
------------------
* Convert command line args to ROS params
This also fixes Issue #9 for publish_tf and enable_tf
Updated README to indicate changes in R200_DISPARITY_MULTIPLIER.
* New Feature to dynamically enable/disable depth stream
Note: Enable/disable of depth stream also enables/disables infrared streams.
* Update camera_info msgs
Add identity matrix for rotation
Add depth to color translation to projection matrix
* Add rgbd_launch as run dependency.
* Add missing Change Log history file
This is a required file as part of the ROS (bloom) release process
which was missed from our initial release.
* Contributors: Mark D Horn, Matthew Hansen, Reagan Lopez, Rajvi Jingar

1.0.0 (2016-02-29)
------------------
* Initial Release
Expand Down
2 changes: 1 addition & 1 deletion camera/cfg/camera_params.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ from dynamic_reconfigure.parameter_generator_catkin import *

gen = ParameterGenerator()

# Name Type Level Description Default Min Max
# Name Type Level Description Default Min Max
gen.add("enable_depth", bool_t, 0, "Enable Depth", True)
gen.add("COLOR_BACKLIGHT_COMPENSATION", int_t, 0, "Backlight Compensation", 1, 0, 4)
gen.add("COLOR_BRIGHTNESS", int_t, 0, "Brightness", 56, 0, 255)
Expand Down
2 changes: 1 addition & 1 deletion camera/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package>
<name>realsense_camera</name>
<version>1.0.0</version>
<version>1.0.1</version>
<description>RealSense Camera package allowing access to Intel 3D cameras and advanced modules</description>

<maintainer email="[email protected]">Rajvi Jingar</maintainer>
Expand Down
5 changes: 3 additions & 2 deletions camera/src/realsense_camera_nodelet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ namespace realsense_camera
uint32_t stream_index = (uint32_t) RS_STREAM_DEPTH;
if(camera_info_[stream_index] == NULL)
{
prepareStreamCalibData (RS_STREAM_DEPTH);
prepareStreamCalibData (RS_STREAM_DEPTH);
}
}

Expand All @@ -194,7 +194,7 @@ namespace realsense_camera
uint32_t stream_index = (uint32_t) RS_STREAM_INFRARED;
if(camera_info_[stream_index] == NULL)
{
prepareStreamCalibData (RS_STREAM_INFRARED);
prepareStreamCalibData (RS_STREAM_INFRARED);
}
}

Expand Down Expand Up @@ -629,6 +629,7 @@ namespace realsense_camera
ROS_INFO_STREAM ("RealSense Camera - Device Stopped");
}


//disable depth, infrared1 and infrared2 streams
rs_disable_stream(rs_device_, RS_STREAM_DEPTH, &rs_error_); checkError ();
ROS_INFO_STREAM ("RealSense Camera - Depth Stream Disabled");
Expand Down

0 comments on commit f8f234d

Please sign in to comment.