Sunday, May 31, 2020

How To install OpenCV with Python 3.8.3 And Pip On Windows 10

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


OpenCV is a library of programming functions mainly aimed at real-time computer vision. Originally developed by Intel, it was later supported by Willow Garage then Itseez. The library is cross-platform and free for use under the open-source BSD license.

Offcial Website -https://opencv.org/

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Testing Environment: Windows 10 64Bit

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Step 1 - installing Python 3.8.3 And Pip

python --version

pip --version

python

exit()


Step 2 - installing OpenCV

pip install opencv-python

python

import cv2


Step 3 - Check OpenCV Version

cv2.__version__

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

No comments:

Post a Comment