Home > Article > Backend Development > Does opencv support python3?
OpenCV is a cross-platform computer vision library released under the BSD license (open source) and can run on Linux, Windows, Android and Mac OS operating systems. It is lightweight and efficient - it consists of a series of C functions and a small number of C classes. It also provides interfaces in Python, Ruby, MATLAB and other languages, and implements many common algorithms in image processing and computer vision.
OpenCV is written in C language, and its main interface is also C language, but it still retains a large number of C language interfaces. (Recommended learning: Python video tutorial)
The library also has a large number of interfaces for Python, Java and MATLAB/OCTAVE (version 2.5). API interface functions for these languages can be obtained through online documentation. Now it also provides support for C#, Ch, Ruby, and GO.
All new developments and algorithms use C interface. A GPU interface using CUDA was also implemented in September 2010.
In addition, opencv already supports py3, please see here:
For more Python related technical articles, please visit PythonTutorial column to learn!
The above is the detailed content of Does opencv support python3?. For more information, please follow other related articles on the PHP Chinese website!