Skip to content
Snippets Groups Projects
Commit 97067240 authored by Julien Michel's avatar Julien Michel
Browse files

BUG: Changing the random intialisation method since it can generate centroids...

BUG: Changing the random intialisation method since it can generate centroids that are too far from the image distribution and will never move
parent 4deec0eb
No related branches found
No related tags found
No related merge requests found
......@@ -406,13 +406,16 @@ private:
++it;
}
// Next, initialize centroids
// Next, initialize centroids by random sampling in the generated
// list of samples
for (unsigned int classIndex = 0; classIndex < nbClasses; ++classIndex)
{
SampleType newCentroid = sampleList->GetMeasurementVector(randGen->GetIntegerVariate(sampleList->Size()-1));
for (unsigned int compIndex = 0; compIndex < sampleSize; ++compIndex)
{
initialMeans[compIndex + classIndex * sampleSize] = min[compIndex] + (max[compIndex] - min[compIndex]) * randGen->GetUniformVariate(0.0, 1.0);
initialMeans[compIndex + classIndex * sampleSize] = newCentroid[compIndex];
}
}
otbAppLogINFO(<<totalSamples <<" samples will be used as estimator input."<<std::endl);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment