The mouth detection using Viola-Jones face detection algorithm shows several mis-detection also. What can I do for accurate mouth detection?

7 visualizaciones (últimos 30 días)
The mouth detection based on Viola-Jones face detection algorithm shows several mis-detection also. What can I do for accurate mouth detection?
The code is as follows;
MouthDetect = vision.CascadeObjectDetector('Mouth','MergeThreshold',16);
BB=step(MouthDetect,I);
figure,
imshow(I); hold on
for i = 1:size(BB,1)
rectangle('Position',BB(i,:),'LineWidth',4,'LineStyle','-','EdgeColor','r');
end
title('Mouth Detection');
hold off;
Used software: Matlab 2012a

Respuestas (3)

Image Analyst
Image Analyst el 30 de Oct. de 2013
You might need to tune the parameters to the size of the mouth in your pictures. Otherwise, go here http://iris.usc.edu/Vision-Notes/bibliography/contentspeople.html#Face%20Recognition,%20Detection,%20Tracking,%20Gesture%20Recognition,%20Fingerprints,%20Biometrics for a better algorithm. Look expecially at this section: "21.3.4.2 Mouth Location, Lip Location, Detection "
  2 comentarios
Image Analyst
Image Analyst el 7 de Abr. de 2017
After 3 and a half years, I'd think so. They probably found a suitable algorithm in the link I provided and then coded it up.

Iniciar sesión para comentar.


Subhrakanti Manna
Subhrakanti Manna el 6 de Ag. de 2017
clc; clear; close all; mouth_detect = vision.CascadeObjectDetector('Mouth', 'MergeThreshold', 300); read_image = imread('distract_001001-000000.jpg'); bounding_box=step(mouth_detect, read_image); figure, imshow(read_image); hold on for i = 1 : size(bounding_box, 1) rectangle('Position',bounding_box(i, :), 'LineWidth', 4, 'LineStyle', '-', 'EdgeColor', 'r'); end title('Mouth Detection'); hold off;
Same code just change threshold value to 300 if u r using matlab 2017a. I have tested on this version on mac. Otherwise 16 and default value will not work.

Justin Pinkney
Justin Pinkney el 31 de En. de 2020
You can try this deep learning based face detector: https://github.com/matlab-deep-learning/mtcnn-face-detection
It outputs the location of eyes, nose and mouth corners as well as the face bounding box, and has much better performance than the built in vision.CascadeObjectDetector

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by