Does anyone know some good easy to learn openCV c/c++ tutorial you can recommend? I tried Google, but I wasn't very satisfied with results.
4 Answers
OpenCV has recently provided a list of books they recommend.
Other interesting materials:
There's a great introduction to OpenCV at Gady Agam's introduction to OpenCV.
Noah Kuntz OpenCV tutorials are OK. It covers image manipulation, data types, image processing, camera stuff and several other topics.
There's also the official OpenCV Tutorials, provided by the OpenCV folks themselves.
Also you can find some good Opencv C++ Examples here to get started.

- 71,488
- 40
- 181
- 244

- 92,053
- 36
- 243
- 426
-
You must know that OpenCV provides an API for C programmers and another with the same features for C++. It's your choice. – karlphillip Apr 15 '11 at 17:05
-
1The book covers version 1.X, in version 2.X there are some changes in the API. – fabrizioM Apr 15 '11 at 20:37
-
The book also presents some theory snippets, useful for a deeper understanding about what the procedures are doing under the covers. – TH. Apr 17 '11 at 13:12
-
1A [2nd edition of "Learning OpenCV"](http://shop.oreilly.com/product/0636920022497.do) is coming and it will contain stuff about OpenCV 2.x, which (I find) is much better structured and a lot easier to handle. – Fei Oct 22 '12 at 10:56
This is a very simple tutorial with all necessary knowledge of libraries and data structures. http://opencv.itseez.com/doc/tutorials/tutorials.html

- 969
- 1
- 14
- 31
-
-
Itseez no longer exists, not even a zombie web site. They were bought by Intel. https://newsroom.intel.com/editorials/intel-acquires-computer-vision-for-iot-automotive/ – DarenW Apr 20 '19 at 16:54
Nashruddin's OpenCV tutorials such as eye tracking and beginner tutorials. http://nashruddin.com/tag/opencv
OpenCV tutorials such as object detection, face recognition and cross-compiling. http://www.computer-vision-software.com/blog/

- 1,193
- 3
- 10
- 11