Add Java and Python code for the following imgproc tutorials: Finding contours in...
authorcatree <catree.catreus@outlook.com>
Sun, 10 Jun 2018 21:57:11 +0000 (23:57 +0200)
committercatree <catree.catreus@outlook.com>
Sun, 10 Jun 2018 21:57:11 +0000 (23:57 +0200)
commita11ef2650eaee498759e046e3bf02ae4ec5c106a
treece52a7d10222d32756222370b28453e4e56a72e4
parent93f2fd396b0f0349e6a0d48baf63bad1a8693cdd
Add Java and Python code for the following imgproc tutorials: Finding contours in your image, Convex Hull, Creating Bounding boxes and circles for contours, Creating Bounding rotated boxes and ellipses for contours, Image Moments, Point Polygon Test.
25 files changed:
doc/tutorials/imgproc/shapedescriptors/bounding_rects_circles/bounding_rects_circles.markdown
doc/tutorials/imgproc/shapedescriptors/bounding_rotated_ellipses/bounding_rotated_ellipses.markdown
doc/tutorials/imgproc/shapedescriptors/find_contours/find_contours.markdown
doc/tutorials/imgproc/shapedescriptors/hull/hull.markdown
doc/tutorials/imgproc/shapedescriptors/moments/moments.markdown
doc/tutorials/imgproc/shapedescriptors/point_polygon_test/point_polygon_test.markdown
doc/tutorials/imgproc/table_of_content_imgproc.markdown
samples/cpp/tutorial_code/ShapeDescriptors/findContours_demo.cpp
samples/cpp/tutorial_code/ShapeDescriptors/generalContours_demo1.cpp
samples/cpp/tutorial_code/ShapeDescriptors/generalContours_demo2.cpp
samples/cpp/tutorial_code/ShapeDescriptors/hull_demo.cpp
samples/cpp/tutorial_code/ShapeDescriptors/moments_demo.cpp
samples/cpp/tutorial_code/ShapeDescriptors/pointPolygonTest_demo.cpp
samples/java/tutorial_code/ShapeDescriptors/bounding_rects_circles/GeneralContoursDemo1.java [new file with mode: 0644]
samples/java/tutorial_code/ShapeDescriptors/bounding_rotated_ellipses/GeneralContoursDemo2.java [new file with mode: 0644]
samples/java/tutorial_code/ShapeDescriptors/find_contours/FindContoursDemo.java [new file with mode: 0644]
samples/java/tutorial_code/ShapeDescriptors/hull/HullDemo.java [new file with mode: 0644]
samples/java/tutorial_code/ShapeDescriptors/moments/MomentsDemo.java [new file with mode: 0644]
samples/java/tutorial_code/ShapeDescriptors/point_polygon_test/PointPolygonTestDemo.java [new file with mode: 0644]
samples/python/tutorial_code/ShapeDescriptors/bounding_rects_circles/generalContours_demo1.py [new file with mode: 0644]
samples/python/tutorial_code/ShapeDescriptors/bounding_rotated_ellipses/generalContours_demo2.py [new file with mode: 0644]
samples/python/tutorial_code/ShapeDescriptors/find_contours/findContours_demo.py [new file with mode: 0644]
samples/python/tutorial_code/ShapeDescriptors/hull/hull_demo.py [new file with mode: 0644]
samples/python/tutorial_code/ShapeDescriptors/moments/moments_demo.py [new file with mode: 0644]
samples/python/tutorial_code/ShapeDescriptors/point_polygon_test/pointPolygonTest_demo.py [new file with mode: 0644]