summaryrefslogtreecommitdiffstats
path: root/rasodmg/test/gen_pattern.cc
blob: 4ce3abc3f9f782e4cb39388748a07e58edf617d3 (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/*
* This file is part of rasdaman community.
*
* Rasdaman community is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Rasdaman community 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 rasdaman community.  If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann /
rasdaman GmbH.
*
* For more information please see <http://www.rasdaman.org>
* or contact Peter Baumann via <baumann@rasdaman.com>.
/
/**
 * SOURCE: gen_pattern.cc
 *
 * MODULE: rasodmg
 *
 * PURPOSE: generate patterns for r_StatTiling.
 *
 * COMMENTS:
 *		None
*/

/* 
   ATENTION: The format of the input file for using with this program is:

     number_of_patterns minterval_domain
     d_dim1 d_dim2 ... d_dimn
     percentage minterval_pattern
     ...

   Example:
   
     1000 [1:800,1:600]
     10 10
     0.40 [10:600,30:300]
     0.60 [70:500,400:500]

     Creates a file with 1000 patterns on a 800x600 domain.
     The pixels are generated having borders with a maximum variation of
     10 pixels from the specified interest zones. And 2 interest zones
     are specified, one for 40% of the patterns, another for 60%.
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <iostream>
#include <fstream.h>
#include <time.h>
#include "raslib/minterval.hh"
#include "raslib/sinterval.hh"
#include "raslib/dlist.hh"

const int BUF_SIZE = 200;

char* in_filename;
char* out_filename;
int total_patterns;
int dim;
int* delta;
r_Minterval* domain;

struct IArea
{
    r_Minterval iarea;
    double percent;

    IArea(r_Minterval& area, double percentage)
      : iarea(area), percent(percentage)
    {
    }
};

DList<IArea*> IAreas;

void parse(int argc, char** argv)
{
  if ((argc == 1) || ((argc == 2) && (strcmp(argv[1], "-h") == 0)))
  {
    cout << "Usage: " << argv[0] << " [input_filename] [output_filename]"
         << endl;
    exit(0);
  }
  
  if (argc != 3)
  {
    cout << "Usage: " << argv[0] << " [input_filename] [output_filename]"
         << endl;
    exit(0);
  }

  in_filename = argv[1];
  out_filename = argv[2];
}

void get_specification()
{
  char buf[BUF_SIZE+1], buf2[BUF_SIZE+1];
  double perc;

  ifstream is(in_filename);
  if (!is)
  {
    cout << "Could not open " << in_filename << "." << endl;
    exit(0);
  }

  cout << "Reading parameters... " << endl;

  is >> total_patterns;
  is.getline(buf, BUF_SIZE);
  domain = new r_Minterval(buf);
  dim = domain->dimension();

  if (total_patterns <= 0)
  {
    cout << "Invalid number of patterns: " << total_patterns << endl;
    exit(0);
  }

  if (dim <= 0)
  {
    cout << "Invalid domain: " << *domain << endl;
    delete domain;
    exit(0);
  }

  cout << endl << "Patterns: " << total_patterns << endl;
  cout << "Domain: " << *domain << endl;
  cout << "Dimension: " << dim << "  (";

  delta = new int[dim];

  for (int i=0; i<dim; i++)
  {
    is >> delta[i];
    cout << "*";
  }

  cout << ")" << endl;
  cout << "Reading patterns... (";
  
  while (!is.eof())
  {
    is >> perc;
    is.getline(buf, BUF_SIZE);
    if (!is.bad() && sscanf(buf, "%s", buf2) == 1)
    {
      r_Minterval area(buf2);
      IArea* ia = new IArea(area, perc);
      IAreas += ia;

      cout << "*";
    }
    else
      break;
  }

  cout << ") -Done- " << endl;
  
  is.close();
}

void generate_patterns()
{
  srand((unsigned int) time(NULL));


  DListIterator<IArea*> it = IAreas.create_iterator();

  ofstream os(out_filename);
  if (!os)
  {
    cout << "Could not open " << out_filename << "." << endl;
    exit(0);
  }
  
  while (it.not_done())
  {
    IArea* ia = *it;
    ++it;

    int total = (int)(ia->percent * total_patterns);

    for (int i=0; i<total; i++)
    {
      os << "[";
      
      for (int j=0; j<dim; j++)
      {
        long xmin = ia->iarea[j].low();
        long xmax = ia->iarea[j].high();
        long total = xmax-xmin;

        if (delta[j] > total)
	  delta[j] = total;
         
        long dxmin = (rand() % (2*delta[j] + 1)) - delta[j];
        long dxmax = (rand() % (2*delta[j] + 1)) - delta[j];

        xmin = xmin + dxmin;
        if (xmin < (*domain)[j].low())
          xmin = (*domain)[j].low() + ((*domain)[j].low() - xmin);
            
        xmax = xmax + dxmax;
	if (xmax > (*domain)[j].high())
          xmax = (*domain)[j].high() - (xmax - (*domain)[j].high());

        if (xmin > xmax)
        {
          long temp = xmin;
          xmin = xmax;
          xmax = temp;
        }

        os << xmin << ":" << xmax;

        if (j != dim-1)
          os << ",";
      }
      
      os << "]" << endl;
    }
  }

  delete [] delta;
  delete domain;
}

int main(int argc, char** argv)
{
  parse(argc, argv);
  get_specification();
  generate_patterns();
  
  return 0;
}