Commit df82747e authored by Davis King's avatar Davis King

Changed the way we guard against length zero descriptor vectors slightly.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403430
parent eb9e8675
......@@ -211,9 +211,9 @@ namespace dlib
}
}
// return the length normalized descriptor
const double len = length(des);
if (len != 0)
// Return the length normalized descriptor. Add a small number
// to guard against division by zero.
const double len = length(des) + 1e-7;
des = des/len;
}
......
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