function varargout = facerecg(varargin)
% FACERECG MATLAB code for facerecg.fig
% FACERECG, by itself, creates a new FACERECG or raises the existing
% singleton*.
%
% H = FACERECG returns the handle to a new FACERECG or the handle to
% the existing singleton*.
%
% FACERECG('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in FACERECG.M with the given input arguments.
%
% FACERECG('Property','Value',...) creates a new FACERECG or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before facerecg_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to facerecg_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 facerecg
% Last Modified by GUIDE v2.5 14-May-2014 00:27:13
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @facerecg_OpeningFcn, ...
'gui_OutputFcn', @facerecg_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 facerecg is made visible.
function facerecg_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 facerecg (see VARARGIN)
% Choose default command line output for facerecg
handles.output = hObject;
set(gcf,'name','人脸识别系统')
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes facerecg wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = facerecg_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 version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
% --- Executes on button press in pushbuttontrain.
function pushbuttontrain_Callback(hObject, eventdata, handles)
% hObject handle to pushbuttontrain (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --- Executes on button press in pushbuttonloadimg.
function pushbuttonloadimg_Callback(hObject, eventdata, handles)
% hObject handle to pushbuttonloadimg (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
%文件筛选框 选择图片
[filename,pathname] = uigetfile({'*.jpg;*.bmp;*.tif;*.png;*.gif','All Image Files'},'请选择一张图片');
if filename == 0%如果没有选择,直接返回即可
return;
end
strfullname = strcat(pathname,filename);%取得图像文件全名
I = imread(strfullname);%读取图片
axes(handles.axes1)
imshow(I);%显示图片
title('测试图像')
%存入到handles内,以便被别的函数调用
handles.I = I;
handles.faceI = I;
% Update handles structure
guidata(hObject, handles);
% --- Executes on button press in pushbuttonfacedetect.
function pushbuttonfacedetect_Callback(hObject, eventdata, handles)
% hObject handle to pushbuttonfacedetect (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
msgbox('QQ609553134')
% --- Executes on button press in pushbuttonalltest.
function pushbuttonalltest_Callback(hObject, eventdata, handles)
% hObject handle to pushbuttonalltest (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --- Executes on button press in pushbuttonreco.
function pushbuttonreco_Callback(hObject, eventdata, handles)
% hObject handle to pushbuttonreco (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
msgbox('具体请联系QQ609553134')
% --- Executes on button press in pushbuttonsave.
function pushbuttonsave_Callback(hObject, eventdata, handles)
% hObject handle to pushbuttonsave (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --- Executes on button press in pushbutton7.
function pushbutton7_Callback(hObject, eventdata, handles)
global vid
vid=videoinput('winvideo',1);
set(vid,'ReturnedColorSpace','rgb');
preview(vid)%固定格式
% hObject handle to pushbutton7 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --- Executes on button press in pushbutton8.
function pushbutton8_Callback(hObject, eventdata, handles)
global vid
global I
I = getsnapshot(vid);
axes(handles.axes1);
imshow(I)
save I
% hObject handle to pushbutton8 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

manylinux
- 粉丝: 5100
最新资源
- 基于python+appium+pytest+allure的android_ios自动化测试.zip
- 基于Python+Django+MySQL+Redis的商城练手项目(天天生鲜商城项目).zip
- 基于Python+Django+Sqlite校园二手交易跳蚤市场网站设计毕业源码案例设计.zip
- 基于Python+Django+Vue+Mysql前后端分离的图书管理系统,图书系统,图书出版系统,管理系统.zip
- 基于Python+Django+Vue的旅游景区推荐系统系统设计与实现.zip
- 基于Python+Django+Vue协同过滤电影推荐系统设计与实现.zip
- 基于Python+DrissionPage开发的大麦H5版自动购票。.zip
- 基于python+django+wepy开发的校园二手商品交易微信小程序.zip
- 基于Python+Flask+MySQL的数据微中台,支持数据库管理、数据收集(某乎爬虫等)等功能.zip
- C# 的 Dijkstra 算法实现- 计算从单个源点到所有其他顶点的最短路径
- 基于python+flask+sqlalchemy的课程,学生,老师信息管理系统.zip
- 基于python+flask的商城,使用了redis解决高并发减库存的问题.zip
- 基于python+mysql+vue开发的大学生社团管理系统.zip
- 基于python+PyQt+MySQL的酒店管理系统.zip
- 基于python+pytest+Selenium+allure,完成web自动化测试框架的搭建,并可以在jenkins上持续集成,应用于课堂派web自动化测试项目中,取得良好效果.zip
- 基于Python+opencv+keras+numpy+sklearn的人脸识别门禁系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈


