Commit fa72ac69 authored by Davis King's avatar Davis King

Removed an assert used for debugging that shouldn't have been committed.

parent c4f48a16
...@@ -274,7 +274,6 @@ namespace dlib ...@@ -274,7 +274,6 @@ namespace dlib
const double rand_scale_perturb = 1.0/rnd.get_double_in_range(min_scale, 1); const double rand_scale_perturb = 1.0/rnd.get_double_in_range(min_scale, 1);
crop_rect = centered_drect(drect, drect.width()*rand_scale_perturb, drect.height()*rand_scale_perturb); crop_rect = centered_drect(drect, drect.width()*rand_scale_perturb, drect.height()*rand_scale_perturb);
DLIB_CASSERT(crop_rect.width() == crop_rect.height());
} }
else else
......
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