Answers for "find opencv version"

74

install opencv python

pip install opencv-python
pip install opencv-contrib-python
Posted by: Guest on February-21-2020
4

how to check opencv version using python

$ python # "python3"- if you are using another version of python
>>>import cv2
>>>cv2.__version__
Posted by: Guest on July-02-2020
8

install opencv

sudo pip3 install opencv-contrib-python
Posted by: Guest on June-22-2020
1

how to check opencv version

$ python -c 'import cv2; print(cv2.__version__)' # 'python3' - if you are using another version of python
Posted by: Guest on November-13-2020
0

check version for opencv

Checking your OpenCV version using Python
$ python					#for python3 use python3
>>> import cv2
>>> cv2.__version__
'3.0.0'
Posted by: Guest on June-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language