Python for Beginners: Creating an OpenCV App in Python
A couple of weeks ago, I published a blog on creating a GUI in Python using Tkinter. I thought of kicking it up a notch and integration the function of…
A couple of weeks ago, I published a blog on creating a GUI in Python using Tkinter. I thought of kicking it up a notch and integration the function of…
Have you ever sent your friend a funny image of yours with some overlayed augmented reality filters? For example, a funny mask on your face, a hat on your head,…
When we process images, we are altering or analyzing the pixel values within the image. Whether it is image blurring, image sharpening, edge detection, or even object recognition (heard of…
You may have heard of object recognition models like YOLO, Fast R-CNN, LeNet, etc. The input these models take for object recognition is an image matrix. When we train image…
When we work with images and real-world objects, we want to collect their coordinates and project them onto a plane for simplification. Such applications are useful in areas like self-driving…
Working with images is fun. When you understand the basics of processing images using programming, you come up with creative ideas on image processing and image augmentation. While there are…
In a machine learning problem that involves an image dataset, for instance, a circle detection problem, training the model over those three-dimensional RGB images can get computationally expensive. Besides this,…