Closed zhiyiYo closed 3 years ago
Hi, In lines 259 and 260 of augmentation.py, the code is
augmentation.py
left = random.uniform(width - w) top = random.uniform(height - h)
I don't understand why the lower limit is set for 'left' and 'top', not the upper limit like
left = random.uniform(high=width - w) top = random.uniform(high=height - h)
Strangely enough, I tested this function and found that if only one parameter is passed, it corresponds to high.
high
Hi, In lines 259 and 260 of
augmentation.py
, the code isI don't understand why the lower limit is set for 'left' and 'top', not the upper limit like