• 大小: 2KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-17
  • 语言: Matlab
  • 标签: matlab  

资源简介

可以分别检测嘴巴,鼻子,眼睛,及面部

资源截图

代码片段和文件信息

clear all;                                                     %清除工作空间
close all;                                                     %关闭图形窗口
clc;                                                           %清除命令行
%明确检测目标(调用vision.CascadeobjectDetector函数通过Viola-Jones算法来检测)
EyeDetect = vision.CascadeobjectDetector(‘EyePairBig‘); 
%读取待检测图像
I = imread(‘C:\Users\Administrator\Desktop\pictures\ly5.jpg‘);
%检测眼睛
BB=step(EyeDetectI);
%注释检测到的面部
figureimshow(I); 
rectangle(‘Position‘BB‘LineWidth‘4‘Linestyle‘‘-‘‘EdgeColor‘‘r‘);
title(‘检测眼睛‘);
Eyes=imcrop(IBB);
figureimshow(Eyes);



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-04-30 15:42  face_detection\
     文件         661  2017-04-25 16:00  face_detection\a_detection_Eyes.m
     文件         676  2017-04-25 16:02  face_detection\a_detection_Mouth.m
     文件         679  2017-04-25 16:01  face_detection\a_detection_Nose.m

评论

共有 条评论