Commit 3511853f authored by Davis King's avatar Davis King

updated a comment

parent 88f8a525
......@@ -671,10 +671,10 @@ namespace dlib
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)
{
// 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.
ptype cur_sum = 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