“Cómo verificar la versión OpenCV” Código de respuesta

Cómo verificar la versión OpenCV usando Python

$ python # "python3"- if you are using another version of python
>>>import cv2
>>>cv2.__version__
Xanthous Xenomorph

Cómo verificar la línea de comando de la versión OpenCV

# in terminal type python3 then the following,
import cv2
cv2.__version__
Delightful Donkey

Cómo verificar la versión OpenCV

$ python -c 'import cv2; print(cv2.__version__)' # 'python3' - if you are using another version of python
Old-fashioned Opossum

Verifique la versión para OpenCV

Checking your OpenCV version using Python
$ python					#for python3 use python3
>>> import cv2
>>> cv2.__version__
'3.0.0'
vizard

Respuestas similares a “Cómo verificar la versión OpenCV”

Preguntas similares a “Cómo verificar la versión OpenCV”

Más respuestas relacionadas con “Cómo verificar la versión OpenCV” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código