Commit 1d3b6b1f authored by Davis King's avatar Davis King

Changed code to avoid compiler warnings.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403055
parent 116ac765
...@@ -43,7 +43,7 @@ namespace dlib ...@@ -43,7 +43,7 @@ namespace dlib
// compute the first row of the integral image // compute the first row of the integral image
unsigned long temp = 0; unsigned long temp = 0;
for (unsigned long c = 0; c < img.nc(); ++c) for (long c = 0; c < img.nc(); ++c)
{ {
assign_pixel(pixel, img[0][c]); assign_pixel(pixel, img[0][c]);
temp += pixel; temp += pixel;
...@@ -51,10 +51,10 @@ namespace dlib ...@@ -51,10 +51,10 @@ namespace dlib
} }
// now compute the rest of the integral image // now compute the rest of the integral image
for (unsigned long r = 1; r < img.nr(); ++r) for (long r = 1; r < img.nr(); ++r)
{ {
temp = 0; temp = 0;
for (unsigned long c = 0; c < img.nc(); ++c) for (long c = 0; c < img.nc(); ++c)
{ {
assign_pixel(pixel, img[r][c]); assign_pixel(pixel, img[r][c]);
temp += pixel; temp += pixel;
......
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