From 88ab07db68ed9e48141522ac43420b65940bd9c9 Mon Sep 17 00:00:00 2001 From: Juha Reunanen Date: Tue, 20 Dec 2016 13:35:13 +0200 Subject: [PATCH] Minor documentation fixes (#368) --- dlib/image_transforms/random_cropper_abstract.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlib/image_transforms/random_cropper_abstract.h b/dlib/image_transforms/random_cropper_abstract.h index cf20bfca5..9348b3d1a 100644 --- a/dlib/image_transforms/random_cropper_abstract.h +++ b/dlib/image_transforms/random_cropper_abstract.h @@ -148,7 +148,7 @@ namespace dlib /*! ensures - When a chip is extracted around an object, the chip will be sized so that - the object's height is at least get_min_object_height() percent of the + the object's height is at least get_min_object_height() * 100 percent of the chip height. E.g. if the chip is HEIGHT pixels tall then the object will be at least HEIGHT*get_min_object_height() pixels tall. This also means that if get_min_object_height() >1 then the object will be only partially @@ -170,7 +170,7 @@ namespace dlib /*! ensures - When a chip is extracted around an object, the chip will be sized so that - the object's height is at most get_min_object_height() percent of the + the object's height is at most get_max_object_height() * 100 percent of the chip height. E.g. if the chip is HEIGHT pixels tall then the object will be at most HEIGHT*get_max_object_height() pixels tall. !*/