Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

plzzz anyone fix this problem i want to load multiple groups

1 visualización (últimos 30 días)
Mohd Shahrukh
Mohd Shahrukh el 3 de Abr. de 2018
Comentada: John D'Errico el 3 de Abr. de 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 comentario
John D'Errico
John D'Errico el 3 de Abr. de 2018
You asked the identical question before. Nothing makes this one anything different, except your anxiety at not getting a response.

Respuestas (0)

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by