人脸识别基于matlab人脸识别检测脸眼鼻子和嘴含Matlab源码 178期
Posted 唐门佛怒唐莲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了人脸识别基于matlab人脸识别检测脸眼鼻子和嘴含Matlab源码 178期相关的知识,希望对你有一定的参考价值。
一、简介
基于matlab人脸识别之检测脸、眼、鼻子和嘴
二、源代码
reqToolboxes = {'Computer Vision System Toolbox', 'Image Processing Toolbox'};
if( ~checkToolboxes(reqToolboxes) )
error('detectFaceParts requires: Computer Vision System Toolbox and Image Processing Toolbox. Please install these toolboxes.');
end
img = imread('lena.png');
detector = buildDetector();
[bbox bbimg faces bbfaces] = detectFaceParts(detector,img,2);
figure;imshow(bbimg);
for i=1:size(bbfaces,1)
figure;imshow(bbfaces{i});
end
% Please uncoment to run demonstration of detectRotFaceParts
%{
img = imrotate(img,180);
detector = buildDetector(2,2);
[fp bbimg faces bbfaces] = detectRotFaceParts(detector,img,2,15);
figure;imshow(bbimg);
for i=1:size(bbfaces,1)
figure;imshow(bbfaces{i});
end
%}
三、运行结果
四、备注
完整代码或者咨询添加QQ 1564658423
以上是关于人脸识别基于matlab人脸识别检测脸眼鼻子和嘴含Matlab源码 178期的主要内容,如果未能解决你的问题,请参考以下文章
图像识别基于 Haar分类器实现五官定位matlab源码含 GUI
人脸识别基于matlab GUI人脸实时检测与跟踪含Matlab源码 673期