Commit f0ccfd40 authored by Davis King's avatar Davis King

Added an if to avoid a possible division by zero inside spectral_cluster().

parent 7e9013f4
...@@ -59,7 +59,9 @@ namespace dlib ...@@ -59,7 +59,9 @@ namespace dlib
for (long r = 0; r < v.nr(); ++r) for (long r = 0; r < v.nr(); ++r)
{ {
spec_samps.push_back(trans(rowm(v,r))); spec_samps.push_back(trans(rowm(v,r)));
spec_samps.back() /= length(spec_samps.back()); const double len = length(spec_samps.back());
if (len != 0)
spec_samps.back() /= len;
} }
// Finally do the K-means clustering // Finally do the K-means clustering
pick_initial_centers(num_clusters, centers, spec_samps); pick_initial_centers(num_clusters, centers, spec_samps);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment