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,10 +211,10 @@ namespace dlib ...@@ -211,10 +211,10 @@ namespace dlib
} }
} }
// return the length normalized descriptor // Return the length normalized descriptor. Add a small number
const double len = length(des); // to guard against division by zero.
if (len != 0) const double len = length(des) + 1e-7;
des = des/len; 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