Photo filters have always been one of the coolest image processing applications. What could be a better inspiration to design filters than taking ideas from Photoshop? Let's begin the fun! In this ...
Getting Started with OpenCV CUDA Module
If you have been working with OpenCV for some time, you should have noticed that in most scenarios OpenCV utilizes CPU, which doesn't always guarantee you the desired performance. To tackle this ...
Training a Custom Object Detector with DLIB & Making Gesture Controlled Applications
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 (FCN CNN) with TensorFlow –
In a previous post, we covered the concept of fully convolutional neural networks (FCN) in PyTorch, where we showed how we could 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 ...