how to MAKE an image as a svm classifier input ?
4 次查看(过去 30 天)
显示 更早的评论
i have matlab 2012 sample codes for svm (support vector machine) classifier. In these code "HOW CAN I ADD THE 2D IMAGE AS A INPUT FOR MALE & FEMALE DETECTION
0 个评论
回答(1 个)
Uttiya Ghosh
2020-7-15
编辑:Uttiya Ghosh
2020-7-15
Hi Anto,
As per my understanding you would like to know the procedure to train a SVM classifier using grayscale images. I have used R2020a version of MATLAB to train trainImageCategoryClassifier function on a set of digits. This function trains a support vector machine (SVM) multiclass classifier using the input bag (bagOfFeatures object). PFB the code required to perform the desired task.
setDir = fullfile(matlabroot,'toolbox','nnet','nndemos', ...
'nndatasets','DigitDataset');
imds = imageDatastore(setDir,'IncludeSubfolders',true,'LabelSource',...
'foldernames');
[imdsTrain,imdsTest] = splitEachLabel(imds,0.9,'randomize');
bag = bagOfFeatures(imdsTrain,"VocabularySize",100);
mdl = trainImageCategoryClassifier(imdsTrain,bag);
confMatrix = evaluate(mdl,imdsTest);
For more information, refer to the following links.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!