You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code in 'gen_data.py' is as follows:
img_logo = Image.new('L', (opts.logo_size, opts.logo_size))
img_logo.save(os.path.join(opts.output_dir, opts.split, cid, 'logo_resized.png'))
See what this means is that it just saves a black image and doesn't add anything else. But in the data set, logo_sized.png is just an image with white text on a black background
Is there any part left out?
The text was updated successfully, but these errors were encountered:
The code in 'gen_data.py' is as follows:
img_logo = Image.new('L', (opts.logo_size, opts.logo_size))
img_logo.save(os.path.join(opts.output_dir, opts.split, cid, 'logo_resized.png'))
See what this means is that it just saves a black image and doesn't add anything else. But in the data set, logo_sized.png is just an image with white text on a black background
Is there any part left out?
The text was updated successfully, but these errors were encountered: