[ros-opencv-apps] 01/02: Merge tag 'upstream/1.11.14'

Leopold Palomo-Avellaneda leo at alaxarxa.net
Sun Oct 23 21:30:17 UTC 2016


This is an automated email from the git hooks/post-receive script.

lepalom-guest pushed a commit to branch master
in repository ros-opencv-apps.

commit c134a882a18380e2fd3f30b551efd4beaf062273
Merge: 16cea17 92a2c3a
Author: Leopold Palomo-Avellaneda <leopold.palomo at upc.edu>
Date:   Sun Oct 23 18:16:15 2016 +0200

    Merge tag 'upstream/1.11.14'
    
    Upstream version 1.11.14

 .gitignore                                        |   8 +
 .travis.sh                                        |  83 +++++
 .travis.yml                                       |  20 +
 CHANGELOG.rst                                     | 138 +++++++
 CMakeLists.txt                                    | 346 +++++++++++++++++
 cfg/AddingImages.cfg                              |  14 +
 cfg/CamShift.cfg                                  |  46 +++
 cfg/ContourMoments.cfg                            |  45 +++
 cfg/ConvexHull.cfg                                |  45 +++
 cfg/EdgeDetection.cfg                             |  60 +++
 cfg/FBackFlow.cfg                                 |  42 +++
 cfg/FaceDetection.cfg                             |  42 +++
 cfg/FindContours.cfg                              |  45 +++
 cfg/GeneralContours.cfg                           |  45 +++
 cfg/GoodfeatureTrack.cfg                          |  44 +++
 cfg/HoughCircles.cfg                              |  61 +++
 cfg/HoughLines.cfg                                |  52 +++
 cfg/LKFlow.cfg                                    |  42 +++
 cfg/PeopleDetect.cfg                              |  48 +++
 cfg/PhaseCorr.cfg                                 |  42 +++
 cfg/SegmentObjects.cfg                            |  42 +++
 cfg/SimpleFlow.cfg                                |  44 +++
 cfg/Smoothing.cfg                                 |  18 +
 cfg/Threshold.cfg                                 |  22 ++
 cfg/WatershedSegmentation.cfg                     |  42 +++
 include/opencv_apps/nodelet.h                     | 318 ++++++++++++++++
 launch/adding_images.launch                       |  23 ++
 launch/camshift.launch                            |  26 ++
 launch/contour_moments.launch                     |  17 +
 launch/convex_hull.launch                         |  18 +
 launch/edge_detection.launch                      |  34 ++
 launch/face_detection.launch                      |  27 ++
 launch/fback_flow.launch                          |  15 +
 launch/find_contours.launch                       |  18 +
 launch/general_contours.launch                    |  18 +
 launch/goodfeature_track.launch                   |  18 +
 launch/hough_circles.launch                       |  32 ++
 launch/hough_lines.launch                         |  28 ++
 launch/lk_flow.launch                             |  15 +
 launch/people_detect.launch                       |  26 ++
 launch/phase_corr.launch                          |  15 +
 launch/segment_objects.launch                     |  15 +
 launch/simple_flow.launch                         |  18 +
 launch/smoothing.launch                           |  20 +
 launch/threshold.launch                           |  25 ++
 launch/watershed_segmentation.launch              |  15 +
 msg/Circle.msg                                    |   3 +
 msg/CircleArray.msg                               |   2 +
 msg/CircleArrayStamped.msg                        |   3 +
 msg/Contour.msg                                   |   1 +
 msg/ContourArray.msg                              |   1 +
 msg/ContourArrayStamped.msg                       |   3 +
 msg/Face.msg                                      |   2 +
 msg/FaceArray.msg                                 |   2 +
 msg/FaceArrayStamped.msg                          |   3 +
 msg/Flow.msg                                      |   2 +
 msg/FlowArray.msg                                 |   1 +
 msg/FlowArrayStamped.msg                          |   2 +
 msg/FlowStamped.msg                               |   2 +
 msg/Line.msg                                      |   3 +
 msg/LineArray.msg                                 |   1 +
 msg/LineArrayStamped.msg                          |   2 +
 msg/Moment.msg                                    |  34 ++
 msg/MomentArray.msg                               |   1 +
 msg/MomentArrayStamped.msg                        |   2 +
 msg/Point2D.msg                                   |   3 +
 msg/Point2DArray.msg                              |   1 +
 msg/Point2DArrayStamped.msg                       |   2 +
 msg/Point2DStamped.msg                            |   3 +
 msg/Rect.msg                                      |   6 +
 msg/RectArray.msg                                 |   1 +
 msg/RectArrayStamped.msg                          |   4 +
 msg/RotatedRect.msg                               |   3 +
 msg/RotatedRectArray.msg                          |   1 +
 msg/RotatedRectArrayStamped.msg                   |   3 +
 msg/RotatedRectStamped.msg                        |   4 +
 msg/Size.msg                                      |   3 +
 nodelet_plugins.xml                               |  91 +++++
 package.xml                                       |  44 +++
 src/node/standalone_nodelet_exec.cpp.in           |  55 +++
 src/nodelet/adding_images_nodelet.cpp             | 224 +++++++++++
 src/nodelet/camshift_nodelet.cpp                  | 433 ++++++++++++++++++++++
 src/nodelet/contour_moments_nodelet.cpp           | 270 ++++++++++++++
 src/nodelet/convex_hull_nodelet.cpp               | 244 ++++++++++++
 src/nodelet/edge_detection_nodelet.cpp            | 308 +++++++++++++++
 src/nodelet/face_detection_nodelet.cpp            | 234 ++++++++++++
 src/nodelet/fback_flow_nodelet.cpp                | 226 +++++++++++
 src/nodelet/find_contours_nodelet.cpp             | 241 ++++++++++++
 src/nodelet/general_contours_nodelet.cpp          | 273 ++++++++++++++
 src/nodelet/goodfeature_track_nodelet.cpp         | 244 ++++++++++++
 src/nodelet/hough_circles_nodelet.cpp             | 351 ++++++++++++++++++
 src/nodelet/hough_lines_nodelet.cpp               | 307 +++++++++++++++
 src/nodelet/lk_flow_nodelet.cpp                   | 330 +++++++++++++++++
 src/nodelet/nodelet.cpp                           | 184 +++++++++
 src/nodelet/people_detect_nodelet.cpp             | 237 ++++++++++++
 src/nodelet/phase_corr_nodelet.cpp                | 223 +++++++++++
 src/nodelet/segment_objects_nodelet.cpp           | 280 ++++++++++++++
 src/nodelet/simple_compressed_example_nodelet.cpp | 233 ++++++++++++
 src/nodelet/simple_example_nodelet.cpp            | 131 +++++++
 src/nodelet/simple_flow_nodelet.cpp               | 260 +++++++++++++
 src/nodelet/smoothing_nodelet.cpp                 | 232 ++++++++++++
 src/nodelet/threshold_nodelet.cpp                 | 171 +++++++++
 src/nodelet/watershed_segmentation_nodelet.cpp    | 343 +++++++++++++++++
 test/CMakeLists.txt                               |  59 +++
 test/test-adding_images.test                      |  37 ++
 test/test-camshift.test                           |  33 ++
 test/test-contour_moments.test                    |  26 ++
 test/test-convex_hull.test                        |  27 ++
 test/test-edge_detection.test                     |  65 ++++
 test/test-face_detection.test                     |  28 ++
 test/test-fback_flow.test                         |  26 ++
 test/test-find_contours.test                      |  27 ++
 test/test-general_contours.test                   |  33 ++
 test/test-goodfeature_track.test                  |  28 ++
 test/test-hough_circles.test                      |  28 ++
 test/test-hough_lines.test                        |  50 +++
 test/test-lk_flow.test                            |  28 ++
 test/test-people_detect.test                      |  26 ++
 test/test-phase_corr.test                         |  26 ++
 test/test-segment_objects.test                    |  27 ++
 test/test-simple_compressed_example.test          |  24 ++
 test/test-simple_example.test                     |  26 ++
 test/test-simple_flow.test                        |  27 ++
 test/test-smoothing.test                          |  89 +++++
 test/test-threshold.test                          |  30 ++
 test/test-watershed_segmentation.test             |  29 ++
 126 files changed, 9249 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/ros/ros-opencv-apps.git



More information about the debian-science-commits mailing list