Instalar Opencv en un ordenador con Windows es un poco difícil.
Cuando ejecutas
pip install opencv
Empiezas a recibir muchos errores como: dll build failed, python version not match y demás
Hablemos de la solución
Si estás usando anaconda entonces será muy fácil instalar opencv.
Abrir Anaconda prompt:
conda create -n opencv python=3.8
Creará un nuevo entorno con el nombre opencv y la versión de python será la 3.8. Puedes cambiar el nombre del entorno o la versión de python sustituyendo opencv y 3.8 respectivamente.
Conda activate opencv
Activará el entorno opencv. Now time to install opencv.
pip install opencv -python
It will install opencv in opencv environment that we have activated in our previous cmd.
Now, time to check opencv installation version.
python
cv2.__version__
All cmd in one place
conda create -n opencv python=3.6
pip install opencv -python
pip install opencv -python
python
cv2.__version__
To open opencv environment, first you have to activate opencv environment and then jupyter notebook.
conda activate opencv
jupyter-notebook
create new notebook and type
import cv2
Congrats, you have installed opencv successfully.