Removed trailing whitespaces
authorNghia Ho <nghiaho12@yahoo.com>
Thu, 26 Sep 2013 09:14:59 +0000 (19:14 +1000)
committerNghia Ho <nghiaho12@yahoo.com>
Thu, 26 Sep 2013 09:14:59 +0000 (19:14 +1000)
modules/imgproc/doc/structural_analysis_and_shape_descriptors.rst
modules/imgproc/test/test_intersection.cpp

index d5532fc..f746712 100644 (file)
@@ -685,7 +685,7 @@ rotatedRectangleIntersection
 Finds out if there is any intersection between two rotated rectangles. If there is then the vertices of the interesecting region are returned as well.
 
 .. ocv:function:: int rotatedRectangleIntersection( const RotatedRect& rect1, const RotatedRect& rect2, OutputArray intersectingRegion  )
-.. ocv:pyfunction:: cv2.rotatedRectangleIntersection( rect1, rect2 ) -> retval, intersectingRegion 
+.. ocv:pyfunction:: cv2.rotatedRectangleIntersection( rect1, rect2 ) -> retval, intersectingRegion
 
     :param rect1: First rectangle
 
@@ -699,7 +699,7 @@ The following values are returned by the function:
 
     * INTERSECT_NONE=0 - No intersection
 
-    * INTERSECT_PARTIAL=1 - There is a partial intersection 
+    * INTERSECT_PARTIAL=1 - There is a partial intersection
 
     * INTERSECT_FULL=2 - One of the rectangle is fully enclosed in the other
 
index 3a53d6f..fa7f348 100644 (file)
@@ -115,7 +115,7 @@ void CV_RotatedRectangleIntersectionTest::test1()
 
     vector<Point2f> vertices;
 
-    int ret = rotatedRectangleIntersection(rect1, rect2, vertices);  
+    int ret = rotatedRectangleIntersection(rect1, rect2, vertices); 
 
     CV_Assert(ret == INTERSECT_NONE);
     CV_Assert(vertices.empty());