Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

plzzz anyone fix this problem i want to load multiple groups

1 Ansicht (letzte 30 Tage)
Mohd Shahrukh
Mohd Shahrukh am 3 Apr. 2018
Kommentiert: John D'Errico am 3 Apr. 2018
• 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 Kommentar
John D'Errico
John D'Errico am 3 Apr. 2018
You asked the identical question before. Nothing makes this one anything different, except your anxiety at not getting a response.

Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by