forked from ros-perception/image_pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix dependencies and dynamic_reconfigure
- Loading branch information
Showing
18 changed files
with
78 additions
and
67 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
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 |
---|---|---|
|
@@ -11,10 +11,10 @@ | |
<author>Patrick Mihelich</author> | ||
<maintainer email="[email protected]">Vincent Rabaud</maintainer> | ||
|
||
<run_depend>image_geometry<_run_depend> | ||
<run_depend>opencv2<_run_depend> | ||
<run_depend>rospy<_run_depend> | ||
<run_depend>sensor_msgs<_run_depend> | ||
<run_depend>image_geometry</run_depend> | ||
<run_depend>opencv2</run_depend> | ||
<run_depend>rospy</run_depend> | ||
<run_depend>sensor_msgs</run_depend> | ||
|
||
<license>BSD</license> | ||
<url>http://www.ros.org/wiki/camera_calibration</url> | ||
|
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env python | ||
from distutils.core import setup | ||
from catkin_pkg.package import parse_package_for_distutils | ||
|
||
d = parse_package_for_distutils() | ||
d['packages'] = ['camera_calibration'] | ||
d['package_dir'] = {'':'src'} | ||
) | ||
|
||
setup(**d) |
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
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
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
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
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
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
for stereo + disparity images. | ||
</description> | ||
<author>Patrick Mihelich</author> | ||
<maintainer email="[email protected]">Patrick Mihelich</maintainer> | ||
<maintainer email="[email protected]">Vincent Rabaud</maintainer> | ||
<license>BSD</license> | ||
<url>http://www.ros.org/wiki/image_view</url> | ||
|
||
|
@@ -18,6 +18,7 @@ | |
<build_depend>cv_bridge</build_depend> | ||
<build_depend>image_transport</build_depend> | ||
<build_depend>message_filters</build_depend> | ||
<build_depend>nodelet</build_depend> | ||
<build_depend>opencv2</build_depend> | ||
<build_depend>rosconsole</build_depend> | ||
<build_depend>roscpp</build_depend> | ||
|
@@ -27,6 +28,7 @@ | |
<run_depend>cv_bridge</run_depend> | ||
<run_depend>image_transport</run_depend> | ||
<run_depend>message_filters</run_depend> | ||
<run_depend>nodelet</run_depend> | ||
<run_depend>opencv2</run_depend> | ||
<run_depend>rosconsole</run_depend> | ||
<run_depend>roscpp</run_depend> | ||
|
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
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
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