-
Notifications
You must be signed in to change notification settings - Fork 1
/
vision_problem_12.cc
85 lines (75 loc) · 2.41 KB
/
vision_problem_12.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
* svrt is the ``Synthetic Visual Reasoning Test'', an image
* generator for evaluating classification performance of machine
* learning systems, humans and primates.
*
* Copyright (c) 2009 Idiap Research Institute, http://www.idiap.ch/
* Written by Francois Fleuret <[email protected]>
*
* This file is part of svrt.
*
* svrt is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* svrt is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with svrt. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "vision_problem_12.h"
#include "shape.h"
VisionProblem_12::VisionProblem_12() { }
void VisionProblem_12::generate(int label, Vignette *vignette) {
int nb_shapes = 3;
scalar_t alpha, beta, gamma;
int xs, ys;
int scale;
Shape shape;
int error;
do {
scalar_t xc, yc, radius;
xc = (random_uniform_0_1() * 0.5 + 0.25) * Vignette::width;
yc = (random_uniform_0_1() * 0.5 + 0.25) * Vignette::height;
radius = (random_uniform_0_1() * 0.5 + 0.1) * Vignette::width;
alpha = random_uniform_0_1() * 2 * M_PI;
beta = (random_uniform_0_1() * 0.4 + 0.1) * M_PI;
vignette->clear();
error = 0;
for(int n = 0; n < nb_shapes; n++) {
if(label) {
if(n == 0)
gamma = alpha + M_PI - beta/2;
else if(n == 1)
gamma = alpha + M_PI + beta/2;
else
gamma = alpha;
} else {
if(n == 0)
gamma = alpha + M_PI - beta/2;
else if(n == 1)
gamma = alpha;
else
gamma = alpha + M_PI + beta/2;
}
if(n < 2) {
scale = small_part_size;
shape.randomize(scale, small_part_hole_size);
} else {
scale = big_part_size;
shape.randomize(scale, big_part_hole_size);
}
xs = int(xc + radius * cos(gamma));
ys = int(yc + radius * sin(gamma));
error |= vignette->overwrites(&shape, xs, ys);
if(!error) {
vignette->store_and_draw(&shape, xs, ys, n,
0, scale, 0);
}
}
} while(error);
}