File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 2.8.3 )
2
2
project (bag_tools )
3
3
4
- find_package (catkin REQUIRED COMPONENTS rospy rosbag sensor_msgs cv_bridge message_filters image_proc stereo_image_proc image_geometry camera_calibration_parsers console_bridge )
4
+ find_package (catkin REQUIRED COMPONENTS rospy rosbag sensor_msgs cv_bridge message_filters image_proc stereo_image_proc image_geometry camera_calibration_parsers )
5
5
find_package (Boost REQUIRED COMPONENTS signals thread )
6
6
find_package (OpenCV REQUIRED )
7
+ find_package (console_bridge REQUIRED )
7
8
8
9
catkin_package (
9
10
INCLUDE_DIRS include
@@ -12,13 +13,13 @@ catkin_package(
12
13
13
14
catkin_python_setup ()
14
15
15
- include_directories (include ${Boost_INCLUDE_DIRS} ${catkin_INCLUDE_DIRS} )
16
+ include_directories (include ${Boost_INCLUDE_DIRS} ${catkin_INCLUDE_DIRS} ${console_bridge_INCLUDE_DIRS} )
16
17
17
18
add_executable (extract_images src/extract_images.cpp )
18
19
add_executable (extract_stereo_images src/extract_stereo_images.cpp )
19
20
add_executable (process_stereo src/process_stereo.cpp )
20
21
21
- target_link_libraries (extract_images ${Boost_LIBRARIES} ${OpenCV_LIBRARIES} ${catkin_LIBRARIES} )
22
- target_link_libraries (extract_stereo_images ${Boost_LIBRARIES} ${OpenCV_LIBRARIES} ${catkin_LIBRARIES} )
23
- target_link_libraries (process_stereo ${Boost_LIBRARIES} ${OpenCV_LIBRARIES} ${catkin_LIBRARIES} )
22
+ target_link_libraries (extract_images ${Boost_LIBRARIES} ${OpenCV_LIBRARIES} ${catkin_LIBRARIES} ${console_bridge_LIBRARIES} )
23
+ target_link_libraries (extract_stereo_images ${Boost_LIBRARIES} ${OpenCV_LIBRARIES} ${catkin_LIBRARIES} ${console_bridge_LIBRARIES} )
24
+ target_link_libraries (process_stereo ${Boost_LIBRARIES} ${OpenCV_LIBRARIES} ${catkin_LIBRARIES} ${console_bridge_LIBRARIES} )
24
25
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class BagSubscriber : public message_filters::SimpleFilter<M>
53
53
public:
54
54
void newMessage (const boost::shared_ptr<M const > &msg)
55
55
{
56
- signalMessage (msg);
56
+ this -> signalMessage (msg);
57
57
}
58
58
};
59
59
Original file line number Diff line number Diff line change 22
22
<build_depend >stereo_image_proc</build_depend >
23
23
<build_depend >image_geometry</build_depend >
24
24
<build_depend >camera_calibration_parsers</build_depend >
25
- <build_depend >console_bridge </build_depend >
25
+ <build_depend >libconsole_bridge_dev </build_depend >
26
26
<run_depend >rospy</run_depend >
27
27
<run_depend >rosbag</run_depend >
28
28
<run_depend >sensor_msgs</run_depend >
32
32
<run_depend >stereo_image_proc</run_depend >
33
33
<run_depend >image_geometry</run_depend >
34
34
<run_depend >camera_calibration_parsers</run_depend >
35
- <run_depend >console_bridge </run_depend >
35
+ <run_depend >libconsole_bridge_dev </run_depend >
36
36
37
37
<export >
38
38
</export >
You can’t perform that action at this time.
0 commit comments