There is a higher rate of accidents caused by drowsy drivers. But no preventive method has been found so far. And this is developed as a solution for that. This is a face detection system that can identify whether your eyes are open or closed. Simply this can detect whether you are sleeping or not. […]
Methods used:cv2.CascadeClassifier().detectMultiScale()Cascade classifier is a class to detect objects in a video stream. Likewise we can use .load or .detectMultiScale functions as well. .load is to load a .xml classifier file. It can be either Haar or an LBP classifier. And .detectMultiScale is to perform detection.cv2.VideoCapture()This is the default constructor capture the video. And can […]Read More
This is based on the Haar Wavelet technique to analyze pixels in the image into squares by function. This uses machine learning techniques to get a high degree of accuracy from what is called “training data”. This uses “integral image” concepts to compute the “features” detected. When it comes to object detection in an image […]Read More
Introduction Machine learning, a highly used word of any programmer, or a researcher in this cyber world. This is a system with an automated ability of learning and improving from experiences with a special program of Artificial Intelligence(AI). As a sub-area of AI, this term refers the ability of IT systems to find solutions independently. […]Read More


