Categories
OpenCV-Python

Simplest Static Hand Gesture Recognition using OpenCV Python

In this article we are going to create a very simplest method described in most of the research papers for Static Hand Gesture Recognition using OpenCV Python. We will focus on the simplicity and authenticity of the algorithm and try our best to focus on the basic usage of static hand gestures. First of all, […]

Categories
OpenCV-Python

Leaf Disease detection using image processing OpenCV Python

Leaf disease detection using image processing, OpenCV, and Python is a non-invasive and efficient way to detect the diseases in the plant. There are some benefits for this First, it is much faster, allowing farmers to inspect large fields of crops quickly and easily. Second, it is more accurate, as algorithms can be trained to […]

Categories
OpenCV-Python

Real Time MOG Background Subtractor OpenCV Python

Toady’s tutorial is about MOG Background Subtractor in OpenCV Python. We are going to use the built in MOG2 background subtractor with OpenCV Python. In this code we will create a VideoCamera Class to simplify the process of background subtracted frame capturing. Here is the output how it gives the binary image as an output […]

Categories
OpenCV-Python

Real Time Coin Detection OpenCV python

In this project we are going to implement Coin Detection algorithm in OpenCV Python. We are going to use real time webcam feed for detecting the coins. We created a simulated lab bench environment where we tested our algorithm. Similar code could be used in Raspberry PI as well. So if you installed the OpenCV […]

Categories
OpenCV-Python Examples

SSDLite + MobileNet Object Detection with OpenCV DNN

I recently find out that OpenCV have Deep Neural Network module which is purely CPU based and no GPU required. So I thought to give it a try. I searched online and come up with this Real time Object detection on Raspberry PI tutorial Which further remove my doubts on the DNN’s biggest nightmare of […]

Categories
OpenCV-Python Computer Vision Examples Image Processing Python

Real Time Contours Detection findcontours OpenCV Python

In this tutorial we are going to learn the usage of findcontours and drawcontours functions in OpenCV Python. We will create code for doing this in real time using Webcam. This code will help you in further image processing and computer vision projects where finding contours or Objects be the first task before doing any […]