In this article, you will learn how to build python-based gesture-controlled applications using AI. We will guide you all the way with step-by-step instructions. I'm sure you will have loads of fun ...
Using Facial Landmarks for Overlaying Faces with Masks
Have you ever wondered how Instagram masks are fitting so perfectly on your face? Would you like to know how you can try to implement something similar by yourself? This post will help you with that! ...
CNN Fully Convolutional Image Classification with TensorFlow
In a previous post, we had covered the concept of fully convolutional neural networks (FCN) in PyTorch, where we showed how we can solve the classification task using the input image of arbitrary ...
Efficient image loading
When it comes to writing optimized code, image loading plays an important role in computer vision. This process can be a bottleneck in many CV tasks and it can often be the culprit behind bad ...
Creating a Virtual Pen And Eraser with OpenCV
Wouldn't it be cool if you could just wave a pen in the air to draw something virtually and it actually draws it on the screen? It could be even more interesting if we didn't use any special hardware ...
PyTorch for Beginners: Semantic Segmentation using torchvision
This post is part of the series in which we are going to cover the following topics. 1. What is Semantic Segmentation? Semantic Segmentation is an image analysis procedure in which we ...