X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=flatland.git;a=blobdiff_plain;f=flatland-test.py;h=8d9f11ba02f4af801d627ed8b11d53c20fbd9abd;hp=ff63309ba85433699d85466ea6eca98475077714;hb=c99cbb5f30e1e2052bfc36880a1425db600454b5;hpb=9e72c3c46d42ab6acdd92f9420390c7d10222658;ds=sidebyside diff --git a/flatland-test.py b/flatland-test.py index ff63309..8d9f11b 100755 --- a/flatland-test.py +++ b/flatland-test.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python-for-pytorch +#!/usr/bin/env python # # flatland is a simple 2d physical simulator @@ -47,19 +47,19 @@ parser.add_argument('--height', help = 'Image height') parser.add_argument('--nb_shapes', - type = int, default = 10, + type = int, default = 8, help = 'Image height') parser.add_argument('--nb_sequences', - type = int, default = 1, + type = int, default = 8, help = 'How many sequences to generate') parser.add_argument('--nb_images_per_sequences', - type = int, default = 3, + type = int, default = 16, 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,7 +110,9 @@ 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') + +print('Saved sequences.png.')