IntroductionΒΆ

Starting with release 2.0, OpenCV has a new Python interface. This replaces the previous SWIG-based Python interface .

Some highlights of the new bindings:

  • single import of all of OpenCV using import cv
  • OpenCV functions no longer have the “cv” prefix
  • simple types like CvRect and CvScalar use Python tuples
  • sharing of Image storage, so image transport between OpenCV and other systems (e.g. numpy and ROS) is very efficient
  • complete documentation for the Python functions

This.

Previous topic

OpenCV 2.1 Python Reference

Next topic

Cookbook

This Page