error :subscripted assignment dimension mismatch when use extractSURFFeature?
Afficher commentaires plus anciens
when i extract surf or fast feature , i have error but when i used extractHOGFeatures i do not have error
for i = 1:numel(trainingSet.Files)
I = readimage(trainingSet, i);
I=imresize(I,[1024 1024]);
I = rgb2gray(I);
train=detectSURFFeatures(I);
[trainfeatures(i,:), trainpoints(i,:)]= extractFeatures(I,train.selectStrongest(10));
end
Error: subscripted assignment dimension mismatch
how can i use extractSURFFeatures and detectBRISKFeatures instead of extractHOGFeatures
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Detect, Extract, and Match Features dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!