error :subscripted assignment dimension mismatch when use extractSURFFeature?
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Detect, Extract, and Match Features in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!