フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

plzzz anyone fix this problem i want to load multiple groups

1 回表示 (過去 30 日間)
Mohd Shahrukh
Mohd Shahrukh 2018 年 4 月 3 日
コメント済み: John D'Errico 2018 年 4 月 3 日
• 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 件のコメント
John D'Errico
John D'Errico 2018 年 4 月 3 日
You asked the identical question before. Nothing makes this one anything different, except your anxiety at not getting a response.

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by