From: Francois Fleuret Date: Sat, 1 Apr 2017 21:08:57 +0000 (+0200) Subject: Switch colorized shapes by default. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=flatland.git;a=commitdiff_plain;h=d0756dc8a3e42aae30d1c7f543931a2316981635 Switch colorized shapes by default. --- diff --git a/flatland-test.py b/flatland-test.py index 5fc687f..5292845 100755 --- a/flatland-test.py +++ b/flatland-test.py @@ -59,7 +59,7 @@ parser.add_argument('--nb_images_per_sequences', help = 'How many images per sequence') parser.add_argument('--randomize_colors', - action='store_true', default=False, + action='store_true', default=True, help = 'Should the shapes be of different colors') parser.add_argument('--randomize_shape_size', @@ -110,8 +110,8 @@ x = flatland.generate_sequence(False, args.nb_images_per_sequences, args.height, args.width, args.nb_shapes, - args.randomize_colors, - args.randomize_shape_size) + args.randomize_shape_size, + args.randomize_colors) sequences_to_image(x, gap = 3, gap_color = (0, 150, 200)).save('sequences.png')