Skip to content Skip to sidebar Skip to footer

Python Opencv : Videocapture Differences Between Python 2.7 To Python 3.5

I'm connected to remote system through ssh, and trying to read frames using OpenCV VideoCapture in Python. The same code succeeds when using Python 2.7 and fails when using Python

Solution 1:

I had exactly the same problem. OpenCV was installed from the sources. The difference between Python 2 and 3 environment was, that for Python 3 opencv-python was additionally installed via pip3. A

pip3 uninstall opencv-python

solved it in my case.

Post a Comment for "Python Opencv : Videocapture Differences Between Python 2.7 To Python 3.5"