Horje
how to check opencv version Code Example
how to check opencv version using python
$ python # "python3"- if you are using another version of python
>>>import cv2
>>>cv2.__version__
how to check opencv version command line
# in terminal type python3 then the following,
import cv2
cv2.__version__
how to check opencv version
$ python -c 'import cv2; print(cv2.__version__)' # 'python3' - if you are using another version of python
check version for opencv
Checking your OpenCV version using Python
$ python					#for python3 use python3
>>> import cv2
>>> cv2.__version__
'3.0.0'




Shell

Related
How to install npm Code Example How to install npm Code Example
grep literal string Code Example grep literal string Code Example
dos delete Code Example dos delete Code Example
shell strip quotes Code Example shell strip quotes Code Example
new angular project no tests Code Example new angular project no tests Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11