How to Record Videos Using OpenCV

In this post I am going to share a very simple but crucial parts of my QRecorder program which is recording images into videos. At the time of writing this article, Qt doesn’t allow recording of video files and OpenCV with its multi-platform support seems to be the best solution.

Download Template Project – Qt for Android (with OpenCV)

I start Qt for Android projects all the time and setting up all the required folders and including libraries can take some time, assuming that I don’t make any mistakes during the initialization of the project. Previously I had posted this about how to add OpenCV libraries to your Qt for Android project but it proved to …

OpenCV Multiple Object Trackers (Using Camshift) Video Demo

Following video demonstrates the application in my previous post about Multiple Object Tracking while it is tracking 3 different objects. You can find the post using the link below: http://amin-ahmadi.com/2015/10/20/camshift-multiple-trackers-application-and-source-code/

OpenCV Feature Points Comparison Program (Executable + Source Code)

This program allows you to benchmark algorithms in OpenCV related to object detection using key points. It allows you to set all the required parameters using a simple interface and search for an object in a scene and view the results. This program is written in C++ using Qt and it uses OpenCV libraries. Please …

Introduction to Support Vector Machines OpenCV 3.0.0 Example (Working version)

Following is the slightly modified version of the example for “Introduction to Support Vector Machines” that is working with OpenCV v.3.0.0 (Current version on OpenCV website only works with version 2.4.X) I assume that you have installed OpenCV 3.0.0 on your computer successfully and you know how to add library references etc. If you have …