-
Notifications
You must be signed in to change notification settings - Fork 732
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/melodic' into Branch_8d01c930e…
…66bdeb58c4b138539a64ddea0b17e10
- Loading branch information
Showing
40 changed files
with
690 additions
and
335 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
version: 2 | ||
jobs: | ||
kinetic: | ||
docker: | ||
- image: ros:kinetic-perception | ||
steps: | ||
- checkout | ||
- run: | ||
name: Set Up Container | ||
command: | | ||
apt-get update -qq && apt-get install -y python-catkin-tools | ||
source `find /opt/ros -name setup.bash | sort | head -1` | ||
rosdep update | ||
rosdep install --from-paths . --ignore-src | ||
cd .. | ||
catkin init | ||
catkin config --extend /opt/ros/$ROS_DISTRO | ||
- run: | ||
name: Build | ||
command: | | ||
cd .. | ||
catkin build --no-status -j4 | ||
- run: | ||
name: Run Tests | ||
command: | | ||
source `find /opt/ros -name setup.bash | sort | head -1` | ||
cd .. | ||
catkin run_tests -j4 | ||
catkin_test_results | ||
working_directory: ~/src | ||
|
||
melodic: | ||
docker: | ||
- image: ros:melodic-perception | ||
steps: | ||
- checkout | ||
- run: | ||
name: Set Up Container | ||
command: | | ||
apt update -qq && apt install -y python-catkin-tools | ||
source `find /opt/ros -name setup.bash | sort | head -1` | ||
rosdep update | ||
rosdep install --from-paths . --ignore-src | ||
cd .. | ||
catkin init | ||
catkin config --extend /opt/ros/$ROS_DISTRO | ||
- run: | ||
name: Build | ||
command: | | ||
cd .. | ||
catkin build --no-status -j4 | ||
- run: | ||
name: Run Tests | ||
command: | | ||
source `find /opt/ros -name setup.bash | sort | head -1` | ||
cd .. | ||
catkin run_tests -j4 | ||
catkin_test_results | ||
working_directory: ~/src | ||
|
||
workflows: | ||
version: 2 | ||
ros_build: | ||
jobs: | ||
- kinetic | ||
- melodic |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
image_pipeline | ||
============== | ||
|
||
[![CircleCI](https://circleci.com/gh/ros-perception/image_pipeline.svg?style=svg)](https://circleci.com/gh/ros-perception/image_pipeline) | ||
|
||
This package fills the gap between getting raw images from a camera driver and higher-level vision processing. | ||
|
||
For more information on this metapackage and underlying packages, please see [the ROS wiki entry](http://wiki.ros.org/image_pipeline). | ||
|
||
For examples, see the [image_pipeline tutorials entry](http://wiki.ros.org/image_pipeline/Tutorials) on the ROS Wiki. |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
<package> | ||
<name>camera_calibration</name> | ||
<version>1.12.23</version> | ||
<version>1.13.0</version> | ||
<description> | ||
camera_calibration allows easy calibration of monocular or stereo | ||
cameras using a checkerboard calibration target. | ||
</description> | ||
<author>James Bowman</author> | ||
<author>Patrick Mihelich</author> | ||
<maintainer email="[email protected]">Vincent Rabaud</maintainer> | ||
<maintainer email="[email protected]">Steven Macenski</maintainer> | ||
<maintainer email="[email protected]">Autonomoustuff team</maintainer> | ||
|
||
<buildtool_depend version_gte="0.5.68">catkin</buildtool_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
Oops, something went wrong.