Python Interface
OpenCV has a built in python interface that utilizes SWIG to automate a large portion of the C -> python conversion code. This page documents
- API Differences in Python
- Using the Interface in an Interactive Shell
IF ANYTHING ON THIS PAGE DOESN'T WORK AS YOU EXPECT, PLEASE REPORT A BUG.
Note: see NoamLewis for info about using CTypes package with Open CV as an alternative to SWIG, that works on Windows.
See also the ctypes-opencv package.
API Differences in Python
In most cases, the API in python is exactly the same as in C, however, additional effort has been made to make interface more pythonic when appropriate. This is manifest in changes to both structures and functions.
Changes to OpenCV Functions
Changes to functions are minimal in order to maintain consistency between between C and Python. One important difference is the case of functions that return values in their arguments. Since basic types in python are immutable, such function have been modified to instead return multiple values.
Changes to OpenCV Structures
In most cases, OpenCV structures in python have the same functionality as in C, with some additional sugar. These additions and variations are described below for those structures that vary signifcantly from their C counterparts.
Arrays
No IplImage
The most important difference with regard to arrays is the elimination of IplImage. This change had to do with the way SWIG and python handle memory and the lack of reference counting in IplImage. The following accommodations have been made to ease the transition:
Functions that return IplImage now return CvMat
Functions that read IplImage now read CvMat
Virtual attributes have been added to CvMat to emulate the fields of IplImage, i.e. height, width, depth, imageDataSize, etc.
ROI and COI functions have been disabled. Use cvGetSubRect or cvSplit and cvMerge instead for similar functionality.
Iteration
CvMat been extended with special python methods like __iter__ and __getitem__ to simplify iteration and element access. For example:
Iterate through rows of array
Iterate through columns of array
Slice Access
Get a row
1 row = x[i]
Get a column
1 col = x[:, i]
Get a subrectangle
1 slice = x[0:10, 0:10]
Get an element
This works for setting values as well
CvMatND
No work has gone into making this more pythonic. If you are interested in changing this, please contact RomanStanchak.
Histograms
You will notice when using the latest wrappers (at the time of writing, the rev. 1887 of the SVN) that you cannot use the function cvCalcHist. A bug file has been submitted, and before a correction is available, you can call the function cvCalcArrHist which will give you what you wanted.
Sequences
The biggest challenge with sequences is that in C, we must cast in order to access elements of the sequence. To make this transparent in Python, all CvSeq returned by OpenCV functions in python are now typed. This makes iteration and element access easier and more pythonic. For example, the function cvFindContours:
1 num_contours, contours = cv.cvFindContours(...)
2 # hrange iterates through h_next element
3 for contour in contours.hrange():
4 # contour is a CvSeq of points
5 for pt in contour:
6 print pt
7 # alternately
8 for pt in contour.vrange():
9 print pt
10 # alternately
11 for i in range(contour.total):
12 print contour[i]
Using an Interactive Shell
The python interface of course allows OpenCV functions to be used in an interactive shell. Here is a brief session from the python interpreter that loads and displays an image.
Note the use of cvStartWindowThread. This function is only available on Linux at the moment, but removes the need to refresh the image manually using cvWaitKey(), thus freeing the interactive interpreter for user input.
The Python interactive shell is somewhat lacking in features compared to the command line in most OSes and programs like Matlab. IPython is an enhanced python shell with built-in features such as tab completion, color, and debugging.
The bash script below will conveniently load IPython, the OpenCV modules, and starts the windowing thread.
Matlab Syntax
Users familiar with Matlab or SciPy may find the matlab_syntax module useful. This implements some basic functions for creating arrays that emulate Matlab and/or SciPy. Mostly, these are convenient because they are less verbose than the standard OpenCV functions. For example,
Is equivalent to the example above of loading and displaying an image.
Building the wrappers
From scratch with Python 2.6, visual C++ 2008 Express edition
I know the wrappers are provided with the install since version 1.1 of OpenCV but if you're working with an older or newer version of python this little guide could come in handy! So here is what I had to do to (re)build the wrappers using python 2.6.1 and visual C++ Express 2008 from scratch (not using cmake):
Set these environment variables (system-wide):
- DISTUTILS_USE_SDK:1
MSSdk:1
Then add to the PATH your path to the bin folder of visual c++, in my system using the standard install it was: "C:\Program Files\Microsoft Visual Studio 9.0\VC\bin"
Ok now go to where the python wrappers are using a console and type:
vcvars32.bat python setup-for-win.py bdist --format="wininst"
And it "should" work well (at least this did the trick for me...)
Using CMAKE
Well, instead of going through all the mess that I described before, you can use cmake to create a "partially" perfect makefile that will allows you to build the wrappers in a single click. I had only to tweak one file, the cmake_install.cmake located in the interfaces/swig/python directory because cmake adds .dll to the generated files while the python wrappers are .pyd, so just change the concerned lines:
"C:/OpenCV_SVN/lib/$(OutDir)/_cv.pyd" "C:/OpenCV_SVN/lib/$(OutDir)/_ml.pyd" "C:/OpenCV_SVN/lib/$(OutDir)/_highgui.pyd"
Ok now you can have fun!