Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are

What are the main differences and which one should I use?

share|improve this question

1 Answer

up vote 38 down vote accepted

Officially, OpenCV releases two types of Python interfaces, cv and cv2.

cv:

I started working on cv. In this, all OpenCV data types are preserved as such. For example, when loaded, images are of format cvMat, same as in C++.

For array operations, there are several functions like cvSet2D, cvGet2D etc. And some discussions say, they are slower.

For imageROI, you need special functions like cvSetImageROI.

If you find contours, cvSeq structures are returned which is not so good to work with compared to python lists or Numpy arrays.

(And i think, soon its development will be stopped. Earlier, there was only cv. Later, OpenCV came with both cv and cv2. Now, there in latest releases, there is only cv2 module, and cv is a subclass inside cv2. You need to call import cv2.cv as cv to access it)

cv2:

And the latest one is cv2. In this, everything is returned as Numpy objects like ndarray and native Python objects like lists,tuples,dictionary etc. So due to this numpy support, you can do any numpy operation here. Numpy is a highly stable and fast array processing library.

For eg, if you load image, an ndarray is returned.

array[i,j] gives you the pixel value at (i,j) position.

Also, for imageROI, array slicing can be used like ROI=array[c1:c2,r1:r2]. No need of separate functions.

To add two images, No need of any function, just res = img1+img2. (But numpy addition is modulo operation for uint8 arrays like images. See this article to know more : Difference between Matrix Arithmetic in OpenCV and Numpy

Contours returned are lists of Numpy arrays. You can find a detailed discussion about Contours here : Contours - 1 : Getting Started

In short, with cv2 everything is simplified and pretty fast

To see a simple discussion how numpy speed up cv2: A query on performance comparison of OpenCV-Python interfaces, cv and cv2

pyopencv:

I don't know much about this since i haven't used it. But it seems to have stopped further development.

I think it would be better to stick on to official libraries.

In short, I would recommend you to use cv2 !!!

EDIT : You can see installation procedure for cv2 module in this link

share|improve this answer
Do you have a link to cv2? – Framester May 3 '12 at 10:19
cv2 Python interface will be compiled and installed if you are building OpenCV from the sources. If you are using binary packages for Linux or other OS you should consult your OS/distribution documentation. See goo.gl/MUjXi for help. – TH. May 3 '12 at 11:08
1  
@Framester: see installation procedure for cv2 in this link : opencvpython.blogspot.in/2012/05/… – Abid Rahman K May 4 '12 at 9:15
Abid's answer is great. Just to add one more point: I did a project with Python 3.x and the only way I could get access to opencv was through ctypes_opencv and the original OpenCV 1.0. It claims support for OpenCV pre1.1 but I never got it working. With that, you will be using the original cvSetROI, etc. C-type interface. – kobejohn May 14 '12 at 14:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.