source: GTP/trunk/Lib/Vis/Preprocessing/EvalStats/EvalStats.cpp @ 1291

Revision 1291, 7.7 KB checked in by mattausch, 18 years ago (diff)
Line 
1// EvalStats.cpp : Defines the entry point for the console application.
2//
3#include "stdafx.h"
4
5#include <string>
6#include <vector>
7#include <istream>
8#include <iostream>
9#include <fstream>
10#include <math.h>
11#include <algorithm>
12
13using namespace std;
14
15
16
17/** This is a small function which takes two log files and computes the
18        difference in percent of the weighted render cost.
19*/
20struct RenderStats
21{
22        float mRenderCost;
23        float mAvgRenderCost;
24};
25
26
27typedef vector<RenderStats> StatsContainer;
28
29
30enum {NO_TAG, RENDER_COST, AVG_RENDER_COST};
31
32
33bool extractRenderStats(ifstream &file, StatsContainer &renderStats)
34{
35        if (!file.is_open())
36                return false;
37               
38        string buf;
39
40        int currentTag = NO_TAG;
41
42        while (!(getline(file, buf)).eof())
43        {
44                //cout << "buf: " << buf << endl;
45
46                if (buf[0] == '#')
47                {
48                        char entry[50];
49
50                        sscanf(buf.c_str(), "#%s", entry);
51                       
52                        // new entry
53                        if (strcmp(entry, "Pass") == 0)
54                        {
55                                //cout << "\nnew render stat " << endl;
56                                renderStats.push_back(RenderStats());
57                        }
58                        else if (strcmp(entry, "TotalRenderCost") == 0)
59                        {
60                                currentTag = RENDER_COST;
61                        }
62                        else if (strcmp(entry, "AvgRenderCost") == 0)
63                        {
64                                currentTag = AVG_RENDER_COST;
65                        }
66                }
67                else
68                {
69                        float val;
70                        sscanf(buf.c_str(), "%f", &val);
71                       
72                        switch (currentTag)
73                        {
74                        case RENDER_COST:
75                                //cout << "render cost: " << val << endl;
76                renderStats.back().mRenderCost = val;
77                                break;
78                        case AVG_RENDER_COST:
79                                //cout << "avg render cost: " << val << endl;
80                                renderStats.back().mAvgRenderCost = val;
81                                break;
82                        default:
83                                break;
84                        }
85                       
86                        currentTag = NO_TAG;
87                }
88        }
89
90        return true;
91}
92
93
94
95void ComputeStats(ofstream &statsOut,
96                                  const RenderStats &firstStats,
97                                  const RenderStats &currentStats,
98                                  const int index)
99{
100        float denom = firstStats.mRenderCost ? firstStats.mRenderCost : 0.000001f;
101        float costRatio = currentStats.mRenderCost / denom;
102                       
103        denom = firstStats.mAvgRenderCost ? firstStats.mAvgRenderCost : 0.000001f;
104        float avgCostRatio = currentStats.mAvgRenderCost / denom;
105
106        statsOut << "#ViewCells\n" << index + 1 << endl
107                         << "#TotalRenderCostRatio\n" << costRatio << endl
108                         << "#AvgRenderCostRatio\n" << avgCostRatio << endl << endl;
109}
110
111
112inline bool vlt(const RenderStats &c1, const RenderStats &c2)
113{
114        return c1.mRenderCost > c2.mRenderCost;
115}
116
117
118// evaluate number of view cells needed for same rendercost
119void EvalNumViewCells(ofstream &outstream,
120                                          const StatsContainer &firstStats,
121                                          const StatsContainer &currentStats)
122{
123       
124        const int n = min((int)firstStats.size(), (int)currentStats.size());
125        //const int n = (int)firstStats.size();
126       
127        StatsContainer::const_iterator it, it_end = currentStats.end();
128
129        int i = 0;
130
131        // currentStats would be the other (necessarily worse?) method, firstStats would be our method
132        // loop through view cells of currentStats
133        // Compare render cost with render cost of other view cell
134        // compute ratio of view cells
135        for (it = currentStats.begin(); it != it_end; ++ it, ++ i)
136        {
137               
138                const float renderCost = (*it).mRenderCost;
139   
140                // find equivalent render cost in the other stats container.
141                // don't stop until cursor is placed one element behind
142                // or end of vector is reached
143                StatsContainer::const_iterator equalCostIt = std::upper_bound(firstStats.begin(), firstStats.end(), *it, vlt);
144
145                int j = (int)(equalCostIt - firstStats.begin());
146
147                float val;
148
149                // special cases
150                if (j == 0)
151                {
152                        val = (float)j;
153                }
154                else if (j >= n)
155                {
156                        val = (float)(j - 1);
157                }
158                else
159                // interpolate linearly. NOTE: probably big error because of steep curve
160                // => intepolate logarithmically
161                {
162#if 1
163                        const float rcu = log(firstStats[j - 1].mRenderCost);
164                        const float rcl = log(firstStats[j].mRenderCost);
165                        const float rc = log(renderCost);
166#else
167                        const float rcu = firstStats[j - 1].mRenderCost;
168                        const float rcl = firstStats[j].mRenderCost;
169                        const float rc = renderCost;
170#endif
171                        const float factor = (rcu - rcl != 0) ?
172                                (rcu - rc) / (rcu - rcl) : 1;
173
174                        // view cells needed for same render cost
175                        val = (float)j - 1 + factor;
176                }
177
178                float ratio = (i && val) ? (float)i / val : 1;
179
180                outstream << "#Pass\n" << i << endl;
181                outstream << "#RenderCost\n" << renderCost << endl;
182                outstream << "#ViewCellsRatio\n" << ratio << endl << endl;     
183        }
184}
185
186
187
188
189
190// evaluate number of view cells needed for same rendercost
191int EvalSingleNumViewCells(const StatsContainer &currentStats,
192                                                   const float cost)
193{
194       
195        StatsContainer::const_iterator it, it_end = currentStats.end();
196
197        RenderStats dummy; dummy.mRenderCost = cost;
198       
199        // find equivalent render cost in the other stats container.
200        // don't stop until cursor is placed one element behind
201        // or end of vector is reached
202        StatsContainer::const_iterator equalCostIt = std::upper_bound(currentStats.begin(),currentStats.end(), dummy, vlt);
203
204        int j = (int)(equalCostIt - currentStats.begin());
205
206        return j;
207}
208
209
210
211int _tmain(int argc, _TCHAR* argv[])
212{
213        vector<StatsContainer> renderStats;
214       
215        if (argc < 3)
216        {
217                cerr << "arguments missing. Usage: input1 input2 ... intputn" << endl;
218                exit(1);
219        }
220
221        vector<string> outFilenames;
222        vector<string> outFilenames2;
223        vector<string> methodnames;
224        // read input files from command line
225        for (int i = 1; i < argc; ++ i)
226        {
227                StatsContainer currentStats;
228     
229                ifstream file;
230                file.open(argv[i]);
231
232                // extract the render cost
233                cout << "extracting render cost of file " << argv[i] << endl;
234       
235                if (extractRenderStats(file, currentStats))
236                {
237                        renderStats.push_back(currentStats);
238
239                        // create output file name
240                        string fn = argv[i];
241               
242                        string::size_type pos = fn.find(".log", 0);
243                        fn.erase(pos, 4);
244                        //sscanf(argv[i], "%s.log", fn);
245                        string outFilename = string(fn) + string("-ratio.log");
246                        string outFilename2 = string(fn) + string("-reverse.log");
247                       
248                        outFilenames.push_back(outFilename);
249                        outFilenames2.push_back(outFilename2);
250                        methodnames.push_back(fn);
251
252                        cout << "new filen: " << outFilename2 << endl;
253                }
254                else
255                {
256                        cout << "could not open file!" << endl;
257                }
258        }
259
260        //statsOut << "rc1 size: " << (int)renderCosts1.size() << " " << (int)renderCosts2.size() << endl << endl;
261        vector<StatsContainer>::const_iterator it = renderStats.begin(), it_end = renderStats.end();
262
263        vector<string>::const_iterator sit, sit_end = outFilenames.end();
264        vector<string>::const_iterator sit2, sit2_end = outFilenames2.end();
265        vector<string>::const_iterator sit3, sit3_end = methodnames.end();
266
267
268        sit = outFilenames.begin();
269        sit2 = outFilenames2.begin();
270        sit3 = methodnames.begin();
271
272        // compare all values with this vector
273        StatsContainer &firstStats = renderStats[0];
274
275        // don't compare with itself
276        //++ it;
277        //++ sit;
278        ofstream statsOut3;
279        statsOut3.open("numviewcells.log");
280
281        for (it; it != it_end; ++ it, ++ sit, ++ sit2, ++sit3)
282        {
283                cout << "now writing output to file " << *sit << endl;
284
285                ofstream statsOut;
286                statsOut.open((*sit).c_str());
287       
288                ofstream statsOut2;
289                statsOut2.open((*sit2).c_str());
290
291                cout << "opening new file: " << (*sit2).c_str() << endl;
292                // compute size of output vector
293                const int n = min((int)firstStats.size(), (int)(*it).size());
294       
295                for (int i = 0; i < n; ++ i)
296                {
297                        //cout << "rc: " << (*it)[i].mRenderCost << endl;
298                        ComputeStats(statsOut, firstStats[i], (*it)[i], i);
299                }
300
301                // evaluate number of view cells needed for same rendercost
302                EvalNumViewCells(statsOut2, firstStats, (*it));
303
304                const float rendercost = 100;
305                const int j = EvalSingleNumViewCells(*it, rendercost);
306
307                statsOut3 << (*sit3).c_str() << " " << j << endl;
308
309                statsOut.close();
310                statsOut2.close();
311        }
312
313        statsOut3.close();
314
315
316
317        return 0;
318}
319
Note: See TracBrowser for help on using the repository browser.