Skip to content

Commit e1c777d

Browse files
committed
Fix release
1 parent cbae7d5 commit e1c777d

File tree

9 files changed

+44
-3
lines changed

9 files changed

+44
-3
lines changed

bag_tools/CHANGELOG.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ Changelog for package bag_tools
44

55
Forthcoming
66
-----------
7+
* Add missing changes
8+
* Forgot to remove extract_image_positions target
9+
* Fix `#12 <https://github.com/srv/srv_tools/issues/12>`_: Remove old field from camera_info msg
10+
* Remove extract_image_positions and auv_msgs depencency
11+
* add auv_msgs deps in CMake
12+
* Fix `#10 <https://github.com/srv/srv_tools/issues/10>`_
13+
* add extract_image_positions
14+
* Merge branch 'indigo' of github.com:srv/srv_tools into indigo
15+
* Minnor changes
16+
* Merge branch 'indigo' of github.com:srv/srv_tools into indigo
17+
* add missing rospy node init
18+
* Merge branch 'indigo' of github.com:srv/srv_tools into indigo
19+
* Fix camera info tool
20+
* Fix bag_tools scripts install
21+
* Added stereo_sequence_publisher.py
22+
* fix seq publisher for indigo
23+
* Addapt the pointlcoud_to_webgl script to the new format of the website
24+
* Contributors: Enrique Fernandez, Miquel Massot, matlabbe, plnegre
25+
726
* typo on console_bridge dependency
827
* added -this- to reference the same class
928
* Of course, we must clear the tmp folder...

bag_tools/src/extract_images.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,10 @@ class ImageSaver
7373
void save_image(uint64_t _time_stamp, const cv::Mat& _image)
7474
{
7575
std::string filename =
76-
boost::str(boost::format("%s/%s%lu.%s")
76+
boost::str(boost::format("%s/%s%06lu_%lu.%s")
7777
% save_dir_
7878
% prefix_
79+
% num_saved_
7980
% _time_stamp
8081
% filetype_);
8182
if (!cv::imwrite(filename, _image))

launch_tools/CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Changelog for package launch_tools
44

55
Forthcoming
66
-----------
7+
78
* preparing for indigo. changed prints for ros logs
89
* added gps_to_std_gt and services_timer from fuerte
910
* hydro catkinization changes

plot_tools/CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Changelog for package plot_tools
44

55
Forthcoming
66
-----------
7+
78
* hydro catkinization changes
89
* added python setup files and wet'ed plot tools
910
* Legend now is the filename

pointcloud_tools/CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ Changelog for package pointcloud_tools
44

55
Forthcoming
66
-----------
7+
* Minnor changes
8+
* fixed pointcloud mapper
9+
* fixed bug with XYZ clouds
10+
* Addapt the pointlcoud_to_webgl script to the new format of the website
11+
* Fix ros timers to work when bagfile finishes
12+
* Fix save problem in pointlcoud viewer
13+
* Publish the pointcloud at the same rate
14+
* Add info message when save pointcloud
15+
* added waitForTransform to mapper
16+
* changed to use system VTK paths
17+
* Contributors: Miquel Massot, Scott K Logan, plnegre
18+
719
* added pointcloud_to_webgl from fuerte branch
820
* New node: pointcloud_mapper_for_slam
921
* Fix dependency for hydro compliance

srv_tools/CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Changelog for package srv_tools
44

55
Forthcoming
66
-----------
7+
78
* added python setup files and wet'ed plot tools
89
* wet repo
910
* Contributors: Miquel Massot

tf_tools/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Changelog for package tf_tools
44

55
Forthcoming
66
-----------
7+
* Minnor changes
8+
* Add new tf tool
9+
* Contributors: plnegre
10+
711
* tf_filter added
812
* hydro catkinization changes
913
* added python setup files and wet'ed plot tools

tf_tools/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 2.8.3)
22
project(tf_tools)
33

4-
find_package(catkin REQUIRED COMPONENTS tf)
4+
find_package(catkin REQUIRED COMPONENTS tf nav_msgs)
55

66
catkin_package()
77

tf_tools/package.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@
1414

1515
<buildtool_depend>catkin</buildtool_depend>
1616
<build_depend>tf</build_depend>
17+
<build_depend>nav_msgs</build_depend>
1718
<run_depend>tf</run_depend>
19+
<run_depend>nav_msgs</run_depend>
1820

1921
<export>
2022

2123
</export>
22-
</package>
24+
</package>

0 commit comments

Comments
 (0)