Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python OpenCV Box2D

I am trying to call OpenCV function MinAreaRect2 from within python. I use OpenCV 2.4.2 with python 2.7 and numpy 1.6. I went this far :

import cv

def nda2ipl(arr, dtype=None):
    return cv.fromarray(np.ascontiguousarray(arr, dtype=dtype))

def min_area_rect2(points):
    storage = cv.CreateMemStorage()
    cv_points = nda2ipl(points.reshape((-1, 1, 2)))
    out = cv.MinAreaRect2(cv_points, storage)
return out

I can call this function with a ndarray of shape (N x 2). I get this kind of results :

((476.5, 604.5), (951.0, 1207.0), -0.0)

I assume that the first tuple is the center of the box, the second gives the width and the height and the last is the angle.

The problem is I could not get a clear reference stating this. Actually, the opencv documentation tells me what the functions returns in Python.

I found the official documentation about this function but this is not very helpful.

What are exactly the output of MinAreaRect2 in python ? More generally, where do you get precise documentation about the OpenCV python wrapper ?

like image 221
Nicolas Barbey Avatar asked Aug 02 '12 14:08

Nicolas Barbey


People also ask

Where is contour area in OpenCV Python?

Contour area is given by the function cv. contourArea() or from moments, M['m00'].

What is cv2 arcLength?

cv2. arcLength() is used to calculate the perimeter of the contour. If the second argument is True then it considers the contour to be closed. Then this perimeter is used to calculate the epsilon value for cv2. approxPolyDP() function with a precision factor for approximating a shape.

What does boundingRect return?

boundingRect() returns the 4 points of the bounding box as shown below. # The first order of the contours. c_0 = contours[0]# Get the 4 points of the bounding rectangle. x, y, w, h = cv2.boundingRect(c_0)# Draw a straight rectangle with the points.


2 Answers

OpenCV Python wrapper documentation is kept along with the normal documentation in same site, www.docs.opencv.org

Earlier Python module used was cv interface, which used native data types from original C++ interface like cvMat, cvSeq etc.

Later it was shifted to more better, advanced and simpler module cv2 interface. In it, everything is returned as either Numpy arrays or native python data types.

Here, tuple returned has the same arguments as that of cvBox2D. You can find more details the differences between different python wrappers here : What is different between all these OpenCV Python interfaces?

Here, your assumption is correct. Those values specified exactly what you mentioned.

If you want to draw rotated rect, you need 4 vertices of the rectangle. For that, you need a function which is never seen in documentation, ie cv2.cv.BoxPoints() (but don't worry, it will be there in documentation when OpenCV 2.4.3 is released. )

enter image description here

like image 136
Abid Rahman K Avatar answered Sep 28 '22 06:09

Abid Rahman K


As stated in the documentation to which you linked, MinAreaRect2 returns a Box2D object:

A CvBox2D object is defined by its center, size and angle, as you correctly assumed, as described here.

Generally speaking, the documentation of the Python wrapper is rather poor. Your best bet is to refer to the C++ documentation and to read the source code.

like image 40
Régis B. Avatar answered Sep 28 '22 07:09

Régis B.