File: ContourMatching.cc

package info (click to toggle)
exactimage 1.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,040 kB
  • sloc: cpp: 35,940; ansic: 1,952; xml: 1,447; makefile: 338; perl: 138; sh: 110; python: 45; php: 37; ruby: 12
file content (226 lines) | stat: -rw-r--r-- 6,439 bytes parent folder | download | duplicates (10)
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
#include <math.h>

#include <iostream>
#include <iomanip>

#include "ArgumentList.hh"
#include "Codecs.hh"
#include "Colorspace.hh"
#include "Matrix.hh"
#include "optimize2bw.hh"

#include "ContourMatching.hh"


using namespace Utility;


int main (int argc, char* argv[])
{
  ArgumentList arglist;
  
  // setup the argument list
  Argument<bool> arg_help ("", "help",
			   "display this help text and exit");
  Argument<std::string> arg_input ("i", "input", "input file",
                                   1, 1);

  Argument<std::string> arg_output ("o", "output", "output file",
				    1, 1);

  // optimize2bw options

  Argument<int> arg_low ("l", "low",
			 "low normalization value", 0, 0, 1);
  Argument<int> arg_high ("h", "high",
			  "high normalization value", 0, 0, 1);
  
  Argument<int> arg_threshold ("t", "threshold",
			       "bi-level threshold value", 0, 0, 1);

  Argument<int> arg_radius ("r", "radius",
			    "\"unsharp mask\" radius", 0, 0, 1);

  Argument<double> arg_sd ("sd", "standard-deviation",
			   "standard deviation for Gaussian distribution", 0.0, 0, 1);


  // matching options

  Argument<std::string> arg_logo ("L", "logo", "logo file",
                                   1, 1);

  Argument<unsigned int> arg_features("F", "features", "maximum number of logo features",
				      (unsigned int)10, 0, 1, false, false);

  Argument<unsigned int> arg_tolerance("T", "tolerance", "tolerated maximum average distance",
				       (unsigned int)20, 0, 1, false, false);


  Argument<double> arg_angle("A", "angle", "maximum rotation angle for pre-matching",
			     0.0, 0, 1);

  Argument<double> arg_step("S", "step", "rotation angle increment for pre-matching",
			    0.0, 0, 1);

  Argument<unsigned int> arg_shift("R", "reduction", "coordinate bit reduction for pre-matching",
				   (unsigned int)3, 0, 1, false, false);



  

  arglist.Add (&arg_help);
  arglist.Add (&arg_input);
  arglist.Add (&arg_logo);
  arglist.Add (&arg_output);
  arglist.Add (&arg_low);
  arglist.Add (&arg_high);
  arglist.Add (&arg_threshold);
  arglist.Add (&arg_radius);
  arglist.Add (&arg_sd);
  arglist.Add (&arg_features);
  arglist.Add (&arg_tolerance);
  arglist.Add (&arg_angle);
  arglist.Add (&arg_step);
  arglist.Add (&arg_shift);


  // parse the specified argument list - and maybe output the Usage
  if (!arglist.Read (argc, argv) || arg_help.Get() == true)
    {
      std::cerr << "Based on Color / Gray image to Bi-level optimizer"
                <<  " - Copyright 2005, 2006 by René Rebe" << std::endl
                << "Usage:" << std::endl;
      
      arglist.Usage (std::cerr);
      return 1;
    }

  Image o_image;
  if (!ImageCodec::Read (arg_input.Get(), o_image)) {
    std::cerr << "Error reading input file." << std::endl;
    return 1;
  }

  Image l_image;
  if (!ImageCodec::Read (arg_logo.Get(), l_image)) {
    std::cerr << "Error reading logo file." << std::endl;
    return 1;
  }

  Image image=o_image;
  
  int low = 0;
  int high = 0;
  int sloppy_threshold = 0;
  int radius = 3;
  double sd = 2.1;
  
  if (arg_low.Get() != 0) {
    low = arg_low.Get();
    std::cerr << "Low value overwritten: " << low << std::endl;
  }
  
  if (arg_high.Get() != 0) {
    high = arg_high.Get();
    std::cerr << "High value overwritten: " << high << std::endl;
  }
  
  if (arg_radius.Get() != 0) {
    radius = arg_radius.Get();
    std::cerr << "Radius: " << radius << std::endl;
  }
  
  if (arg_sd.Get() != 0) {
    sd = arg_sd.Get();
    std::cerr << "SD overwritten: " << sd << std::endl;
  }
  
  // convert to 1-bit (threshold)
  int threshold = 0;
  
  if (arg_threshold.Get() != 0) {
    threshold = arg_threshold.Get();
    std::cerr << "Threshold: " << threshold << std::endl;
  }
  
  optimize2bw (image, low, high, threshold, sloppy_threshold, radius, sd);
  optimize2bw (l_image, low, high, threshold, sloppy_threshold, radius, sd);

  if (arg_threshold.Get() == 0)
    threshold = 200;

  FGMatrix mi(image, threshold);
  FGMatrix ml(l_image, threshold);

  std::cout << "Contouring" << std::endl;
  Contours conti(mi);
  Contours contl(ml);
  std::cout << "done." << std::endl;


#if false // Export test
  FILE* test=fopen("test.cnt", "w");
  if (!WriteContourArray(test, conti.contours))
    std::cout << "write error" << std::endl;
  fclose(test);

  
  Contours copy;
  test=fopen("test.cnt", "r");
  if (ReadContourArray(test, copy.contours)) {
    if (copy.contours.size() != conti.contours.size()) {
      std::cout << "contour count differs" << std::endl;
    } else {
      for (unsigned int c=0; c<copy.contours.size(); c++) {
	if (copy.contours[c]->size() != conti.contours[c]->size())
	  std::cout << "size" << std::endl;
	else 
	  for (unsigned int i=0; i<copy.contours[c]->size(); i++)
	    if ((*(copy.contours[c]))[i] != (*(conti.contours[c]))[i])
	      std::cout << "content\t" << i 
			<< "\t" << (*(copy.contours[c]))[i].first
			<< "\t" << (*(copy.contours[c]))[i].second
			<< "\t" << (*(conti.contours[c]))[i].first
			<< "\t" << (*(conti.contours[c]))[i].second
			<<  std::endl;
      }
    }
  } else
    std::cout << "read error" << std::endl;
  fclose(test);
#endif

  // Todo: check for insane values
  unsigned int features=arg_features.Get();
  unsigned int tolerance=arg_tolerance.Get();
  unsigned int shift=arg_shift.Get();
  double max_angle=arg_angle.Get();
  double angle_step=arg_step.Get();

  LogoRepresentation lrep(&contl, features, tolerance, shift, max_angle, angle_step);
  std::cout << "score: " << lrep.Score(&conti) << std::endl;
  int tx=lrep.logo_translation.first;
  int ty=lrep.logo_translation.second;
  double angle=M_PI * lrep.rot_angle / 180.0;
  std::cout << "logo translation: " << tx << "\t" << ty << "\trotation angle: " << lrep.rot_angle << std::endl;

  for (unsigned int i=0; i<lrep.mapping.size(); i++) {
    double trash;
    Contours::Contour transformed;
    RotCenterAndReduce(*lrep.mapping[i].first, transformed, angle, 0, 0, trash, trash);
    DrawTContour(o_image, transformed, tx, ty, 0, 0, 255);
    //transformed.clear();
    //RotCenterAndReduce(*lrep.mapping[i].first, transformed, 0, 0, 0, trash, trash);
    //DrawTContour(o_image, transformed, tx, ty, 0, 255, 255);
    DrawContour(o_image, *lrep.mapping[i].second, 0,  255, 0);
  }


  if (!ImageCodec::Write(arg_output.Get(), o_image)) {
    std::cerr << "Error writing output file." << std::endl;
    return 1;
  }
  return 0;
}