Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

plzzz anyone fix this problem i want to load multiple groups

1 visualizzazione (ultimi 30 giorni)
• global myFolder; • global SVMstruct; • feat=[]; • class=[]; • classl=[]; • species=[]; • for i=0:2 • myFolder = strcat('C:\Booosssss\My matlab Work\Image database\Text_', num2str(i)); • if ~isdir(myFolder) • errorMessage = sprintf('Error: The following folder does not exist:\n%s', myFolder); • uiwait(warndlg(errorMessage)); • return; • end • filePattern = fullfile(myFolder, '*.png'); • pngFiles = dir(filePattern); • for k = 1:length(pngFiles) • baseFileName = pngFiles(k).name; • fullFileName = fullfile(myFolder, baseFileName); • fprintf(1,'Now reading %s\n',fullFileName); • imageArray = imread(fullFileName); • [featureVector,hogVisualization] = extractHOGFeatures(imageArray); • feat=[feat;featureVector]; • class=[class;i]; • drawnow; • end end • SVMstruct=svmtrain(feat,class);
  1 Commento
John D'Errico
John D'Errico il 3 Apr 2018
You asked the identical question before. Nothing makes this one anything different, except your anxiety at not getting a response.

Risposte (0)

Questa domanda è chiusa.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by