경 동 금융 빅 데이터 경기 돼지 얼굴 인식 (3) - 이미지 특징 추출 2
clear;
trainPath = fullfile(pwd,'image');
trainData = imageDatastore(trainPath,...
'IncludeSubfolders',true,'LabelSource','foldernames');
[trainingImages,testImages] = splitEachLabel(trainData,0.7,'randomized');
numTrainImages = numel(trainingImages.Labels);
%
net = alexnet;
%
layer = 'fc7';
%
trainingFeatures = activations(net,trainingImages,layer);
%
testFeatures = activations(net,testImages,layer);
%
trainingLabels = trainingImages.Labels;
%
testLabels = testImages.Labels;
save('alexnetFeature.mat','trainingFeatures','trainingLabels','trainingFeatures','testLabels');
관련 내용 은 Matlab 이미지 인식 / 검색 시리즈 (7) - 10 줄 코드 를 참조 하여 깊이 있 는 학습 네트워크 의 중간 층 데 이 터 를 특징 으로 할 수 있 습 니 다.