How to process extracted SURF features for SVM classifier
2 次查看(过去 30 天)
显示 更早的评论
How to process stored surf features of multiple files for svm classifier
0 个评论
采纳的回答
Bilal Razi
2020-4-11
You can use a combination of functions.
bagOfFeatures and trainImageCategoryClassifier
Use bagOfFeatures to extract your SURF features e.g.
bag = bagOfFeatures(imds, "CustomExtractor", extractorFcn);
where extractorFcn is is a function which extracts your SURF features
then train your model using SVM
classifier = trainImageCategoryClassifier(imds, bag, "LearnerOptions", opts);
where opts = templateSVM()
Hope that helps.
0 个评论
更多回答(4 个)
Divya Gaddipati
2020-1-14
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!
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!