In this post, we will learn how to find the Convex Hull of a shape (a group of points). We will briefly explain the algorithm and then follow up with C++ and Python code implementation using ...
Search Results for: c
MultiTracker : Multiple Object Tracking using OpenCV (C++/Python)
In this post, we will cover how to use OpenCV's multi-object tracking API implemented using the MultiTracker class. We will share code in both C++ and Python. Before we dive into the details, ...
Image Colorization Using CNN With OpenCV
Sometimes technology enhances art. Sometimes it vandalizes it. Colorizing black and white films is an ancient idea dating back to 1902. For decades many movie creators opposed the idea of ...
SVM using Scikit-Learn in Python
This post explains the implementation of Support Vector Machines (SVMs) using Scikit-Learn library in Python. We had discussed the math-less details of SVMs in the earlier post. In this post, we ...
GOTURN : Deep Learning based Object Tracking
In this post, we will learn about a Deep Learning based object tracking algorithm called GOTURN. The original implementation of GOTURN is in Caffe, but it has been ported to the OpenCV Object Tracking ...
Find the Center of a Blob (Centroid) using OpenCV (C++/Python)
In middle school, we learned about various shapes in geometry. It was relatively easy to find the centers of standard shapes like the circle, square, triangle, ellipse, etc. But when it came to ...