OpenCV-Playing-Card-Detector
OpenCV-Playing-Card-Detector copied to clipboard
OpenCV & Numpy libraries are not included w/Anaconda
In Windows 10, the default installation of Anaconda 3.6 does not include OpenCV & Numpy libraries. These are required to be downloaded and installed separately from the Anaconda repository.
OpenCV
https://anaconda.org/anaconda/opencv
To install, run "Prompt" and type: conda install -c anaconda opencv
Install Numpy (registration required)
https://anaconda.org/anaconda/numpy
To install, run "Prompt" and type: conda install -c anaconda numpy
For anyone else on windows, I was still receiving:
no module named 'cv2'
I then had to run:
conda update conda -c conda-canary
pip install opencv-python