fix assignment of class labels

by using the indices from the sorted distance vector of pairs.
pull/5965/head
Amro 9 years ago
parent 3d2fc6c2fd
commit 47cdb041f2
  1. 2
      modules/ml/src/testset.cpp

@ -104,7 +104,7 @@ void createConcentricSpheresTestSet( int num_samples, int num_features, int num_
max_dst = std::max( max_dst, dis[i].d );
for( ; i < num_samples && dis[i].d <= max_dst; ++i )
responses.at<int>(i) = cur_class;
responses.at<int>(dis[i].i) = cur_class;
}
}

Loading…
Cancel
Save