This website is made possible by displaying online advertisements to our visitors.
Please consider supporting us by disabling your ad blocker. Thank you for your support.
Bubble Sheet Multiple Choice Test with OpenCV and Python

Bubble Sheet Multiple Choice Test with OpenCV and Python

July 18 2022 Yacine Rouizi
OpenCV Image Processing Computer Vision

In this tutorial, we are going to use OpenCV and Python to automatically read and grade bubble test sheets. This is a beginner tutorial, so we will start the project from scratch while discussing each step.


Read more ...
How to Detect Face landmarks with Dlib, Python, and OpenCV

How to Detect Face landmarks with Dlib, Python, and OpenCV

July 4 2022 Yacine Rouizi
Image Processing Computer Vision Face Detection Dlib

In this tutorial, we will see how to detect 68 facial landmarks in an image using Python, OpenCV, and the Dlib library.


Read more ...
Smile Detection with Python, OpenCV, and Deep Learning

Smile Detection with Python, OpenCV, and Deep Learning

June 23 2022 Yacine Rouizi
OpenCV Computer Vision Object Detection Face Detection

In this tutorial, we will use deep learning to build a more robust smile detector than the one we built in the previous tutorial where we used a Haar cascade smile detector. We will use the SMILES dataset to train our convolutional neural network...


Read more ...
Smile Detection with Python, OpenCV, and Haar Cascade

Smile Detection with Python, OpenCV, and Haar Cascade

June 13 2022 Yacine Rouizi
OpenCV Computer Vision Object Detection Face Detection

In this tutorial, we are going to implement a smile detector algorithm using OpenCV and a pre-trained Haar cascade. Smile detention is a subset of facial recognition technology and can be used for different purposes such as for ensuring that people ...


Read more ...
Overfitting and Underfitting in Deep Learning

Overfitting and Underfitting in Deep Learning

June 6 2022 Yacine Rouizi
Keras and TensorFlow Deep Learning

There are two major problems when training neural networks: overfitting and underfitting. Overfitting is a problem that can occur when the model is too sensitive to the training data. The model will then fail to generalize and perform well on new data...


Read more ...
Save and Load Models with TensorFlow

Save and Load Models with TensorFlow

May 23 2022 Yacine Rouizi
Keras and TensorFlow Deep Learning

Training a deep neural network can take hours or even days to complete. It is not practical to train such a neural network every time you want to make predictions. In this case, you can save and then later reload your model.


Read more ...
Edge and Contour Detection with OpenCV and Python

Edge and Contour Detection with OpenCV and Python

May 2 2022 Yacine Rouizi
OpenCV Image Processing

In this tutorial, we are going to see how to detect edges and contours on an image. Edge detection is a fundamental task in computer vision. It can be defined as the task of finding boundaries between regions that have different properties.


Read more ...
How to Rotate Images with OpenCV and Python

How to Rotate Images with OpenCV and Python

April 1 2022 Yacine Rouizi
OpenCV Image Processing

In this tutorial, we will see how to rotate images with OpenCV using some built-in functions. The first one is cv2.getRotationMatrix2D which, as its name suggests, will give us the transformation matrix that we will use to rotate the image ...


Read more ...