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

This commit is contained in:
Davis King 2017-12-19 14:18:55 -05:00
parent c4f48a16cd
commit fa72ac6946
1 changed files with 0 additions and 1 deletions

View File

@ -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