Answers for "check opencv version anaconda prompt"

1

how to check opencv version command line

# in terminal type python3 then the following,
import cv2
cv2.__version__
Posted by: Guest on September-07-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

Code answers related to "check opencv version anaconda prompt"

Python Answers by Framework

Browse Popular Code Answers by Language