Update for recent libpng
[svrt.git] / vision_problem_4.cc
1 /*
2  *  svrt is the ``Synthetic Visual Reasoning Test'', an image
3  *  generator for evaluating classification performance of machine
4  *  learning systems, humans and primates.
5  *
6  *  Copyright (c) 2009 Idiap Research Institute, http://www.idiap.ch/
7  *  Written by Francois Fleuret <francois.fleuret@idiap.ch>
8  *
9  *  This file is part of svrt.
10  *
11  *  svrt is free software: you can redistribute it and/or modify it
12  *  under the terms of the GNU General Public License version 3 as
13  *  published by the Free Software Foundation.
14  *
15  *  svrt is distributed in the hope that it will be useful, but
16  *  WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  *  General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with svrt.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  */
24
25 #include "vision_problem_4.h"
26 #include "shape.h"
27
28 VisionProblem_4::VisionProblem_4() { }
29
30 void VisionProblem_4::generate(int label, Vignette *vignette) {
31   int x_big, y_big, x_small, y_small;
32   Shape big_shape, small_shape;
33
34   int error;
35   do {
36
37     vignette->clear();
38
39     error = 0;
40
41     big_shape.randomize(big_part_size / 2, big_part_hole_size / 2);
42
43     do {
44       x_big = int(drand48() * Vignette::width);
45       y_big = int(drand48() * Vignette::height);
46     } while(big_shape.overwrites(vignette, x_big, y_big));
47
48     if(!error) {
49       big_shape.draw(vignette, x_big, y_big);
50
51       vignette->fill(x_big, y_big, 128);
52
53       if(label) {
54         vignette->switch_values(128, 255);
55       }
56
57       int nb_attempts = 0;
58       do {
59         small_shape.randomize(small_part_size / 2, small_part_hole_size / 2);
60         x_small = int(drand48() * Vignette::width);
61         y_small = int(drand48() * Vignette::height);
62         error = small_shape.overwrites(vignette, x_small, y_small);
63         nb_attempts++;
64       } while(error && nb_attempts < 10);
65
66       if(!error) {
67         vignette->replace_value(128, 255);
68         small_shape.draw(vignette, x_small, y_small);
69       }
70     }
71
72   } while(error);
73 }