Open akshay6893 opened 4 months ago
in cli.py, in minmax_size fucntion - This line -
cli.py
minmax_size
img = img.resize(size.astype(int), Image.BILINEAR)
Instead should be -
img = img.resize( tuple(size.astype(int)), Image.BILINEAR)
in
cli.py
, inminmax_size
fucntion - This line -img = img.resize(size.astype(int), Image.BILINEAR)
Instead should be -
img = img.resize( tuple(size.astype(int)), Image.BILINEAR)