OpenCV
OpenCV is a tool for image processing and performing computer vision tasks. It is an open-source library that can be used to perform tasks like face detection, objection tracking, landmark detection, and much more.
Only some OpenCV modules are compiled with GPU support (Cuda).
Versions
- opencv/2.3.2 - for Python 2.6
- opencv/2.4 - for Python 2.7
- opencv/2.4-cuda - for Python 2.6
- opencv/3.2 - for Python 2.7
- opencv/3.2-cuda - for Python 2.7 and Cuda 8.0
- opencv/3.3.1-py34 - for Python 3.4
- opencv/3.4.5-py36 - for Python 3.6
- opencv/3.4.5-py36-cuda10.1 - for Python 3.6 and Cuda 10.1
Python
OpenCV can be used as a Python library. This module is compiled with Python 2.7 and Numpy support. To initialize your environment, use:
Then, in Python, library cv2
is available, you can import it and use it:
Last updated on