In this tutorial we will learn how to create an average face using OpenCV ( C++ / Python ). Most people would agree that the woman in Figure 1 is pretty. Can you guess her ethnicity ? Why is her ...
Face Morph Using OpenCV — C++ / Python
In this tutorial we will learn how to morph one face into another using OpenCV. I have chosen to use the photos of the top three American Presidential candidates, but this is not a political post ...
Find frame rate (frames per second-fps) in OpenCV (Python/C++)
In OpenCV the class VideoCapture handles reading videos and grabbing frames from connected cameras. There is a lot of information you can find about the video file you are playing by using the ...
Blob Detection Using OpenCV ( Python, C++ )
This tutorial explains simple blob detection using OpenCV. What is a Blob? A Blob is a group of connected pixels in an image that share some common property ( E.g, grayscale value ). In the ...
Turn your OpenCV Code into a Web API in under 10 minutes — Part 1
Wouldn't it be cool if you could expose your OpenCV python code as a web service ? Got 10 minutes ? Let's get started! I have created a video that walks you through the process. ...
How to compile OpenCV sample code ?
Let's say you want to compile and run the face detection sample code that comes with the OpenCV. This code is located at OpenCV 2.4.x : /path/to/opencv/samples/c/facedetect.cppOpenCV 3 : ...