Qishuo SHI

Results 2 comments of Qishuo SHI

for d in train_folders: for i in os.listdir(d): img_path = os.path.join(d, i) img = Image.open(img_path, mode='r') if img.width >= min_size and img.height >= min_size: train_images.append(img_path) there is something wrong. For...

> ``` > for d in train_folders: > for i in os.listdir(d): > img_path = os.path.join(d, i) > img = Image.open(img_path, mode='r') > if img.width >= min_size and img.height >=...