updated a comment

This commit is contained in:
Davis King 2012-01-01 11:05:38 -05:00
parent 88f8a52568
commit 3511853f68
1 changed files with 2 additions and 2 deletions

View File

@ -671,10 +671,10 @@ namespace dlib
const long width = rect.width(); const long width = rect.width();
// Now do the bulk of the scanning work. // Now do the bulk of the filtering work.
for (long r = 0; r < img.nr(); ++r) for (long r = 0; r < img.nr(); ++r)
{ {
// set to sum at point(-1,r). i.e. should be equal to sum_of_rects_in_images(images, rects, point(-1,r)) // set to sum at point(-1,r). i.e. should be equal to sum(array_to_matrix(img), translate_rect(rect, point(-1,r)))
// We compute it's value in the next loop. // We compute it's value in the next loop.
ptype cur_sum = 0; ptype cur_sum = 0;