• 大小: 9KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: Matlab
  • 标签: MATLAB  人脸识别  CNN  

资源简介

基于matlab的人脸识别训练部分的代码实现。训练部分的代码

资源截图

代码片段和文件信息

%% Create Simple Deep Learning Network for Classification
%%
% This example shows how to create and train a simple convolutional neural
% network for deep learning classification. Convolutional neural networks
% are essential tools for deep learning and are especially suited for
% image recognition. Learn how to set up network layers image data and
% training options train the network and test the classification
% accuracy.

%% Load and Explore the Image Data
% Load the digit sample data as an |ImageDatastore| object.


digitDatasetPath = fullfile(matlabroot‘toolbox‘...
‘nnet‘‘nndemos‘ ‘nndatasets‘‘DigitDataset‘);
digitData = imageDatastore(digitDatasetPath ...
        ‘IncludeSubfolders‘true‘LabelSource‘‘foldernames‘);
    
%% 
% |imageDatastore| function labels the images 

评论

共有 条评论