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 ...
Archives for July 2018
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 ...
Support Vector Machines (SVM)
Ideas in Machine Learning have a "winner takes all" quality. When an idea takes off, it dominates the field so completely that one tends to believe it is the only idea worth pursuing. Today, Deep ...
Batch Normalization in Deep Networks
In this post, we will learn what Batch Normalization is, why it is needed, how it works, and how to implement it using Keras. Batch Normalization was first introduced by two researchers at Google, ...