Commit 3b7a1934 authored by Davis King's avatar Davis King

Changed code to avoid compiler warning.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403173
parent 17e5172d
...@@ -41,7 +41,7 @@ namespace dlib ...@@ -41,7 +41,7 @@ namespace dlib
const double& scale const double& scale
) )
{ {
DLIB_ASSERT(get_rect(img).contains(centered_rect(center, 17*scale,17*scale)) == true && DLIB_ASSERT(get_rect(img).contains(centered_rect(center, (unsigned long)(17*scale),(unsigned long)(17*scale))) == true &&
scale > 0, scale > 0,
"\tdouble compute_dominant_angle(img, center, scale)" "\tdouble compute_dominant_angle(img, center, scale)"
<< "\n\tAll arguments to this function must be > 0" << "\n\tAll arguments to this function must be > 0"
...@@ -125,7 +125,7 @@ namespace dlib ...@@ -125,7 +125,7 @@ namespace dlib
matrix<double,64,1,MM,L>& des matrix<double,64,1,MM,L>& des
) )
{ {
DLIB_ASSERT(get_rect(img).contains(centered_rect(center, 31*scale,31*scale)) == true && DLIB_ASSERT(get_rect(img).contains(centered_rect(center, (unsigned long)(31*scale),(unsigned long)(31*scale))) == true &&
scale > 0, scale > 0,
"\tvoid compute_surf_descriptor(img, center, scale, angle)" "\tvoid compute_surf_descriptor(img, center, scale, angle)"
<< "\n\tAll arguments to this function must be > 0" << "\n\tAll arguments to this function must be > 0"
......
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