How to process extracted SURF features for SVM classifier
Mostra commenti meno recenti
How to process stored surf features of multiple files for svm classifier
Risposta accettata
Più risposte (4)
Divya Gaddipati
il 14 Gen 2020
You can use fitcsvm to train SVM classifier.
You can load the files into the workspace in a loop.
for i = 1 : total_files
x = load(filename(i).name);
XTrain(i,:) = x;
clear x;
end
Assuming your labels are in a variable YTrain, you can use the fitcsvm as follows:
Mdl = fitcsvm(XTrain, YTrain)
For more information on fitcsvm, you can refer to the following link:
Alternatively, you can also use classificationLearner
Hope this helps!
Amit DOegar
il 16 Gen 2020
0 voti
fadi ssuhimat
il 3 Feb 2020
0 voti
Do you find soluation for this case, I have same issue???
Amit DOegar
il 3 Feb 2020
0 voti
Categorie
Scopri di più su Image Category Classification in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!