Someone Please Help me to save Features into .mat file along with labels

조회 수: 1 (최근 30일)
saeeda saher
saeeda saher 2018년 6월 8일
댓글: Walter Roberson 2018년 6월 8일
Here is my code, I am beginner and dont kow how to edit it. I want to save HOG features into .mat file with labels. Please help.
training=imageSet('Training/Fear','recursive'); % folder name of the database
K=1;
%featureMatrix = [];
for i=1:size(training,2 )
for j=1:training(i).Count
Face=read(training(i),j);
Face=imresize(Face, [48 48]);
%Face=rgb2gray(Face); %If color images
% Face = pca(double(Face));
%newFace = LBP(Face);
%imshow(uint8(Face))
HOG_Features= extractHOGFeatures2(Face);
%featureMatrix = [featureMatrix; HOG_Features];
%disp(featureMatrix )
trainingFeatures(K,:)=single(HOG_Features);
% plot(visualization);
traininglabel{K}=training(i).Description;
K=K+1;
end
persons{i}=training(i).Description;
end
traininglabel=traininglabel';
csvwrite('TrainFear4-2.csv', trainingFeatures)

답변 (1개)

Walter Roberson
Walter Roberson 2018년 6월 8일
To save in a .mat file:
save('TrainFear4-2.mat', 'traininglabel', 'trainingFeatures');
If you wanted to save into .csv file like in the existing code:
data_to_write = [traininglabel(:), num2cell(trainingFeatures)];
csvwrite('TrainFear4-2.csv', data_to_write);
Note that this would only work for MS Windows with Excel installed; for other systems different commands would be needed to write the file.
  댓글 수: 2
saeeda saher
saeeda saher 2018년 6월 8일
I tried your code but its not saving the labels on right side of mat file after the features in one .mat file.
Walter Roberson
Walter Roberson 2018년 6월 8일
.mat files do not have a left or right side.
Note: it is not possible to create a numeric array that has text labels as part of it. You can have cell arrays that have a mix of numeric and text, and you can have table() objects that have a mix of columns of numeric and columns of text.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by