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

资源简介

基于matlab-GUI的实时人脸检测系统,具有较高的检测性能,误检率较低!

资源截图

代码片段和文件信息

function varargout = CameraRead(varargin)
% CAMERAREAD MATLAB code for CameraRead.fig
%      CAMERAREAD by itself creates a new CAMERAREAD or raises the existing
%      singleton*.
%
%      H = CAMERAREAD returns the handle to a new CAMERAREAD or the handle to
%      the existing singleton*.
%
%      CAMERAREAD(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in CAMERAREAD.M with the given input arguments.
%
%      CAMERAREAD(‘Property‘‘Value‘...) creates a new CAMERAREAD or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before CameraRead_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to CameraRead_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE‘s Tools menu.  Choose “GUI allows only one
%      instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES

% Edit the above text to modify the response to help CameraRead

% Last Modified by GUIDE v2.5 28-Jan-2017 19:42:12

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @CameraRead_OpeningFcn ...
                   ‘gui_OutputFcn‘  @CameraRead_OutputFcn ...
                   ‘gui_LayoutFcn‘  []  ...
                   ‘gui_Callback‘   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
    gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before CameraRead is made visible.
function CameraRead_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to CameraRead (see VARARGIN)

% Choose default command line output for CameraRead
handles.output = hobject;
imaqhwinfo(‘winvideo‘);  
vid1=videoinput(‘winvideo‘1); %将摄像头输入变量信息定义公用变量,即句柄的变量;

handles.vid1 = vid1;

faceDetector = vision.CascadeobjectDetector();%加载人脸检测分类器;
faceDetector.MinSize = [50 30];
faceDetector.MaxSize = [200 200];
faceDetector.MergeThreshold = 10;

handles.faceDetector = faceDetector;%将该变量定义为公用变量,即句柄的变量;

% Update handles structure
guidata(hobject handles);

% UIWAIT makes CameraRead wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = CameraRead_OutputFcn(hobject eventdata handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hobject    handle to figure
% eventdata  reserved - to be defined in a future vers

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-01-29 19:09  faceDetect\
     文件        7229  2017-01-29 19:50  faceDetect\CameraRead.fig
     文件        4993  2017-01-29 19:50  faceDetect\CameraRead.m

评论

共有 条评论