Image Processing in MATLAB Tutorial 3 - Face Features Detection

Publicado el: 10 marzo 2015
en el canal de: The Motivated Engineer
92,698
729

Image Processing in MATLAB Tutorial 3 - Face Features Detection

This is a tutorial series on the image processing toolbox on MATLAB. It mainly aims at demonstrating the functions in an easy and understandable. To watch other videos in this playlist, visit:    • Image Processing in MATLAB  

In this video, we use the Cascade Object Detector built into MATLAB to detect the facial features from an image. It uses the Viola Jones algorithm. We also explore how we can optimize the threshold values to get better results. Please note that this function might be available only in the latest versions of MATLAB.

Code:
a = imread('face.jpg');
a = imresize(a,0.25);
detector = vision.CascadeObjectDetector('Mouth');

detector.MergeThreshold = 100;

bbox = step(detector, a);
videoOut = insertObjectAnnotation(a,'rectangle',bbox,'Mouth');
imshow(videoOut);

By: Surya Penmetsa


En esta página del sitio puede ver el video en línea Image Processing in MATLAB Tutorial 3 - Face Features Detection de Duración hora minuto segunda en buena calidad , que subió el usuario The Motivated Engineer 10 marzo 2015, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 92,698 veces y le gustó 729 a los espectadores. Disfruta viendo!