OpenCV - Facial Landmarks and Face Detection using dlib and OpenCV Last Updated : 19 Dec, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report Content has been removed on Author's request. Comment More infoAdvertise with us Next Article Feature detection and matching with OpenCV-Python V vigneshsuresh4499 Follow Improve Article Tags : Python Write From Home Python-OpenCV Practice Tags : python Similar Reads Face and Hand Landmarks Detection using Python - Mediapipe, OpenCV In this article, we will use mediapipe python library to detect face and hand landmarks. We will be using a Holistic model from mediapipe solutions to detect all the face and hand landmarks. We will be also seeing how we can access different landmarks of the face and hands which can be used for diff 4 min read Age Detection using Deep Learning in OpenCV The task of age prediction might sound simple at first but it's quite challenging in real-world applications. While predicting age is typically seen as a regression problem this approach faces many uncertainties like camera quality, brightness, climate condition, background, etc. In this article we' 5 min read Eye blink detection with OpenCV, Python, and dlib In this article, we are going to see how to detect eye blink using OpenCV, Python, and dlib. This is a fairly simple task and it requires you to have a basic understanding of OpenCV and how to implement face landmark detection programs using OpenCV and dlib, since we'll be using that as the base for 6 min read Face Detection using Python and OpenCV with webcam Face detection is a important application of computer vision that involves identifying human faces in images or videos. In this Article, we will see how to build a simple real-time face detection application using Python and OpenCV where webcam will be used as the input source.Step 1: Installing Ope 3 min read Feature detection and matching with OpenCV-Python In this article, we are going to see about feature detection in computer vision with OpenCV in Python. Feature detection is the process of checking the important features of the image in this case features of the image can be edges, corners, ridges, and blobs in the images. In OpenCV, there are a nu 5 min read Implement Canny Edge Detector in Python using OpenCV In this article, we will learn the working of the popular Canny edge detection algorithm developed by John F. Canny in 1986. Usually, in Matlab and OpenCV we use the canny edge detection for many popular tasks in edge detection such as lane detection, sketching, border removal, now we will learn the 5 min read Like