Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Dimension mismatch problem in image data on matlab

1 Ansicht (letzte 30 Tage)
Tasnim Tamanna
Tasnim Tamanna am 8 Jun. 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I am working on facial expression recognition. Here i read my image dataset and got extracted the feature vector. I want to get every feature vector separately as a row vector after every iteration.So in the end i wound have a matrix of features where every row is a sample. but i cant get it and dimension mismatch error is shown. Can anyone kindly help me?
s=4;
for i=1:s
I=ImageRead()+i;
After the feature extraction :
FeatureMatrix= localBinaryPatternImage;
FeatureVector=FeatureMatrix(:);
length(FeatureVector);
mat=zeros(1,6000);
mat(i,:)=FeatureVector
end

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by