mirror of https://github.com/davisking/dlib.git
Change logic for upsampling printing
This commit is contained in:
parent
dd19ce846e
commit
30869fbe03
|
@ -203,7 +203,7 @@ namespace dlib
|
|||
{
|
||||
// Unsampled images # time(s) to allow detection of small boxes
|
||||
std::cout << "Upsampled images " << upsample_amount;
|
||||
std::cout << (upsample_amount == 1) ? " time" : " times";
|
||||
std::cout << ((upsample_amount > 1) ? " times" : " time");
|
||||
std::cout << " to allow detection of small boxes." << std::endl;
|
||||
}
|
||||
if (options.add_left_right_image_flips)
|
||||
|
|
Loading…
Reference in New Issue