OpenCV¶
- OpenCV Home
- pyimagesearch.com
- learnopencv.com
- OpenCV 4.0 Installation Scripts and Summary.
- OpenCV Python tutorial
- OpenCV Getting Started
- LearnOpenCV Tutorials
Important
Use iterm2 to launch scripts to avoid SIP problems on OSX
Cool Projects¶
- Invisibility Cloak using Color Detection and Segmentation
- Analyze a Soccer game using Tensorflow Object Detection and OpenCV
- Hangman: Creating games in OpenCV
- Hand Keypoint Detection
Setup¶
OSX¶
Install OpenCV 4 with:
brew install opencv
Ubuntu¶
Instructions for installing OpenCV 4 on Ubuntu are here.
Windows¶
Instructions for installing OpenCV 4 on Windows are here.
Raspbian¶
The script for OpenCV 4.0 is here.
The script explanation is here.
Determining OpenCV version¶
Determining openCV version
$ python
>>> import cv2
>>> cv2.__version__