Skip to content

Commit 8f6401b

Browse files
committed
fix for the agreement
1 parent 4174342 commit 8f6401b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

results/results_classification_agreement.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function results_classification_agreement(ouput_folder, varargin)
5656

5757
% Check if folder is correct
5858
try
59-
load(fullfile(folder,files{i}));
59+
load(fullfile(folder,files{1}));
6060
catch
6161
errordlg('Cannot load merged classifier file','Error');
6262
return;
@@ -91,7 +91,7 @@ function results_classification_agreement(ouput_folder, varargin)
9191
end
9292
cmatrix = 100*eye(length(files));
9393
for iter = 1:length(files)
94-
load(fullfile(folder,files{i}));
94+
load(fullfile(folder,files{iter}));
9595
class_map_1 = classification_configs.CLASSIFICATION.class_map;
9696
if SEGMENTATION
9797
[~,~,~,class_map_1] = distr_strategies_smoothing(segmentation_configs, classification_configs,varargin{:});

0 commit comments

Comments
 (0)