/usr/include/terralib/kernel/TeStatistics.h is in libterralib-dev 4.3.0+dfsg.2-11.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 | /************************************************************************************
TerraLib - a library for developing GIS applications.
Copyright � 2001-2007 INPE and Tecgraf/PUC-Rio.
This code is part of the TerraLib library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
You should have received a copy of the GNU Lesser General Public
License along with this library.
The authors reassure the license terms regarding the warranties.
They specifically disclaim any warranties, including, but not limited to,
the implied warranties of merchantability and fitness for a particular purpose.
The library provided hereunder is on an "as is" basis, and the authors have no
obligation to provide maintenance, support, updates, enhancements, or modifications.
In no event shall INPE and Tecgraf / PUC-Rio be held liable to any party for direct,
indirect, special, incidental, or consequential damages arising out of the use
of this library and its documentation.
*************************************************************************************/
/*! \file TeStatistics.h
\brief This file contains functions for calculate statistics
*/
#ifndef TeStatistics_H
#define TeStatistics_H
#include "TeDataTypes.h"
#include <string>
#include <map>
using namespace std;
/** @defgroup Stat Statistical functions
@{
*/
//! vector of statistics
typedef vector<double> stats;
//! Associate a statistics set for each dimension
struct TL_DLL TeStatisticsDimension
{
int dimension_;
TeStatisticValMap stat_;
TeStatisticsDimension(int d, TeStatisticValMap& st):
dimension_(d),
stat_(st)
{}
};
//! vector of the statistics associated with the dimensions
typedef vector<TeStatisticsDimension> TeStatisticsDimensionVect;
//! map each value to its count: histogram
typedef map<double, int> TeHistogram;
/** Calculates the histrogram of a set of values kept in a data structure
\param itBegin the iterator to the begin of the data structure
\param itEnd the iterator to the end of the data structure
\param histOut to return the histogram
*/
template<typename T>
bool TeCalculateHistogram(const T& itBegin, const T& itEnd, TeHistogram& histOut)
{
T it = itBegin;
//initialization
while(it!=itEnd)
{
double val = (*it);
histOut[val] = 0;
it++;
}
it= itBegin;
//calcule histogram
while(it!=itEnd)
{
double val = (*it);
histOut[val]++;
it++;
}
return true;
}
/** Calculates the statistics of a specific dimension of a data structure
\param itBegin the iterator to the begin of the data structure
\param itEnd the iterator to the end of the data structure
\param stat to return the statistics
\param dim the dimension of the data structure
*/
template<typename It>
bool TeCalculateStatistics(const It& itBegin, const It& itEnd, TeStatisticValMap& stat, int dim)
{
double sum, mean, minValue, maxValue, variance, assim,
curtose, stDev, coefVar, amplitude, moda, median;
sum=mean=variance=assim=curtose=stDev=coefVar=amplitude=0.0;
minValue = TeMAXFLOAT;
maxValue = -minValue ;
vector<double> values;
int count=0;
int countTotal = 0;
It itt = itBegin;
while(itt != itEnd)
{
double val;
val = (*itt)[dim];
if(val!=TeMAXFLOAT) // MAXFLOAT is considered invalid value
{
values.push_back (val);
sum += val;
if(minValue>val)
minValue = val;
if(maxValue<val)
maxValue = val;
++count;
mean = sum/count;
}
++itt;
++countTotal;
}
for(int i=0; i<count; i++)
{
double v= values[i];
variance += pow((v-mean),2);
assim += pow((v-mean),3);
curtose += pow((v-mean),4);
}
if(!count)
return false;
variance /= count;
stDev = pow(variance,0.5);
assim /= count;
assim /= pow(stDev,3);
curtose /= count;
curtose /= pow(stDev,4);
coefVar = (100*stDev)/mean;
amplitude = maxValue-minValue;
sort(values.begin(), values.end());
//calculate median
if((count%2)==0)
median = (values[(count/2)]+values[(count/2-1)])/2;
else
median = values[(count-1)/2];
//calculate the mode
TeHistogram histog;
TeCalculateHistogram(values.begin(),values.end(), histog);
TeHistogram::iterator itHist = histog.begin();
int nCount=0;
while(itHist!=histog.end())
{
int hCount = itHist->second;
if (hCount > nCount)
{
nCount = hCount;
moda = itHist->first;
}
itHist++;
}
//fill results
stat[TeCOUNT] = countTotal;
stat[TeVALIDCOUNT] = count;
stat[TeMINVALUE] = minValue;
stat[TeMAXVALUE] = maxValue;
stat[TeSUM] = sum;
stat[TeMEAN] = mean;
stat[TeSTANDARDDEVIATION] = stDev;
stat[TeVARIANCE] = variance;
stat[TeSKEWNESS] = assim;
stat[TeKURTOSIS] = curtose;
stat[TeAMPLITUDE] = amplitude;
stat[TeMEDIAN] = median;
stat[TeVARCOEFF] = coefVar;
stat[TeMODE] = moda;
return true;
}
/** Calculates the statistics of a string data structure
\param itBegin the iterator to the begin of the data structure
\param itEnd the iterator to the end of the data structure
\param stat to return the statistics
*/
template<typename It>
bool TeCalculateStatistics(const It& itBegin, const It& itEnd, TeStatisticStringValMap& stat, const double &dummy=255, const bool &useDummy=true)
{
string min, max, val;
int count = 0;
It it = itBegin;
int totalCount = 0;
if(it != itEnd)
min = max = (*it);
while(it != itEnd)
{
val = (*it);
++it;
if((useDummy == false) && (!val.empty()))
{
if(val.compare(Te2String(dummy))==0)
continue;
}
if(val.empty() == false)
{
count++;
min = MIN(min, val);
max = MAX(max, val);
}
++totalCount;
}
stat[TeMINVALUE] = min;
stat[TeMAXVALUE] = max;
stat[TeCOUNT] = Te2String(totalCount);
stat[TeVALIDCOUNT] = Te2String(count);
return true;
}
/** Calculates the statistics of a data structure
\param itBegin the iterator to the begin of the data structure
\param itEnd the iterator to the end of the data structure
\param stat to return the statistics
*/
template<typename It>
bool TeCalculateStatistics(const It& itBegin, const It& itEnd, TeStatisticValMap& stat, const double &dummy=255, const bool &useDummy=true)
{
double sum, mean, minValue, maxValue, variance, assim,
curtose, stDev, coefVar, amplitude, moda, median;
sum=mean=variance=assim=curtose=stDev=coefVar=amplitude=moda=0.0;
minValue = TeMAXFLOAT;
maxValue = -minValue;
vector<double> values;
int totalCount = 0;
int count=0;
It itt = itBegin;
while(itt != itEnd)
{
double val = (*itt);
++itt;
if((useDummy == false) && (val == dummy))
{
continue;
}
if(val != TeMAXFLOAT) // MAXFLOAT is considered invalid value
{
values.push_back (val);
sum += val;
minValue = MIN(minValue, val);
maxValue = MAX(maxValue, val);
}
++totalCount;
}
count = values.size();
mean = sum/count;
for(int i=0; i<count; i++)
{
double v= values[i];
variance += pow((v-mean),2);
assim += pow((v-mean),3);
curtose += pow((v-mean),4);
}
if(!count)
return false;
variance /= count;
stDev = pow(variance,0.5);
assim /= count;
assim /= pow(stDev,3);
curtose /= count;
curtose /= pow(stDev,4);
coefVar = (100*stDev)/mean;
amplitude = maxValue-minValue;
sort(values.begin(), values.end());
//calculate median
if((count%2)==0)
median = (values[(count/2)]+values[(count/2-1)])/2;
else
median = values[(count-1)/2];
//calculate the mode
TeHistogram histog;
TeCalculateHistogram(values.begin(),values.end(), histog);
TeHistogram::iterator itHist = histog.begin();
int nCount=0;
while(itHist!=histog.end())
{
int hCount = itHist->second;
if (hCount > nCount)
{
nCount = hCount;
moda = itHist->first;
}
itHist++;
}
//fill results
stat[TeVALIDCOUNT] = count;
stat[TeCOUNT] = totalCount;
stat[TeMINVALUE] = minValue;
stat[TeMAXVALUE] = maxValue;
stat[TeSUM] = sum;
stat[TeMEAN] = mean;
stat[TeSTANDARDDEVIATION] = stDev;
stat[TeVARIANCE] = variance;
stat[TeSKEWNESS] = assim;
stat[TeKURTOSIS] = curtose;
stat[TeAMPLITUDE] = amplitude;
stat[TeMEDIAN] = median;
stat[TeVARCOEFF] = coefVar;
stat[TeMODE] = moda;
return true;
}
template<typename It>
bool TeCalculateStatistics(It& itBegin, It& itEnd, TeStatisticsDimensionVect& stat)
{
std::vector<double> dummy;
return TeCalculateStatistics(itBegin, itEnd, stat, dummy);
}
/** Calculates the statistics of all dimensions of a data structure
\param itBegin the iterator to the begin of the data structure
\param itEnd the iterator to the end of the data structure
\param stat to return the statistics
*/
template<typename It>
bool TeCalculateStatistics(It& itBegin, It& itEnd, TeStatisticsDimensionVect& stat, std::vector<double> dummy,const bool &useDummy=true)
{
vector<double> sum, mean, minValue, maxValue, variance, assim, curtose,
stDev, coefVar, amplitude, moda, median;
vector<double> values;
bool noDummy;
int nb = itBegin.nBands();
//initialization of the vetors
for (int i=0; i<nb; i++)
{
sum.push_back(0.0);
mean.push_back(0.0);
variance.push_back(0.0);
assim.push_back(0.0);
curtose.push_back(0.0);
stDev.push_back(0.0);
coefVar.push_back(0.0);
amplitude.push_back(0.0);
median.push_back (0.0);
moda.push_back (0.0);
minValue.push_back(TeMAXFLOAT);
maxValue.push_back(TeMINFLOAT);
}
map<int,stats> bandValues;
int count=0;
int validCount=0;
It itt = itBegin;
while(itt != itEnd)
{
noDummy=false;
values.clear();
for(int j=0; j<nb; j++)
{
double val = itt.operator* (j);
values.push_back(val);
if(val!=dummy[j]) noDummy=true;
}
++itt;
if((useDummy==false) && (noDummy==false))
{
continue;
}
for (int j=0; j<nb; j++)
{
double val = values[j];
if(val!=TeMAXFLOAT) // MAXFLOAT is considered invalid value
{
bandValues[j].push_back(val);
sum[j] += val;
if(minValue[j]>val)
minValue[j] = val;
if(maxValue[j]<val)
maxValue[j] = val;
int size = bandValues[j].size();
mean[j] = sum[j]/size;
validCount++;
}
}
++count;
}
if(!count)
return false;
for (int jj=0; jj<nb; jj++)
{
for(int i=0; i<count; i++)
{
double v = bandValues[jj][i];
variance[jj] += pow((v-mean[jj]),2);
assim[jj] += pow((v-mean[jj]),3);
curtose[jj] += pow((v-mean[jj]),4);
}
variance[jj] /= count;
stDev[jj] = pow(variance[jj],0.5);
assim[jj] /= count;
assim[jj] /= pow(stDev[jj],3);
curtose[jj] /= count;
curtose[jj] /= pow(stDev[jj],4);
coefVar[jj] = (100*stDev[jj])/mean[jj];
amplitude[jj] = maxValue[jj]-minValue[jj];
sort(bandValues[jj].begin(), bandValues[jj].end());
//calculate median
if((count%2)==0)
median[jj] = ((bandValues[jj][(count/2)])+(bandValues[jj][(count/2-1)]))/2;
else
median[jj] = bandValues[jj][(count-1)/2];
//calculate the mode
TeHistogram histog;
TeCalculateHistogram(bandValues[jj].begin(),bandValues[jj].end(), histog);
TeHistogram::iterator itHist = histog.begin();
int nCount=0;
while(itHist!=histog.end())
{
int hCount = itHist->second;
if (hCount > nCount)
{
nCount = hCount;
moda[jj] = itHist->first;
}
itHist++;
}
//fill results
TeStatisticValMap statVal;
statVal[TeCOUNT] = count;
statVal[TeVALIDCOUNT]=validCount;
statVal[TeMINVALUE] = minValue[jj];
statVal[TeMAXVALUE] = maxValue[jj];
statVal[TeSUM] = sum[jj];
statVal[TeMEAN] = mean[jj];
statVal[TeSTANDARDDEVIATION] = stDev[jj];
statVal[TeVARIANCE] = variance[jj];
statVal[TeSKEWNESS] = assim[jj];
statVal[TeKURTOSIS] = curtose[jj];
statVal[TeAMPLITUDE] = amplitude[jj];
statVal[TeMEDIAN] = median[jj];
statVal[TeVARCOEFF] = coefVar[jj];
statVal[TeMODE] = moda[jj];
TeStatisticsDimension statBand(jj, statVal);
stat.push_back(statBand);
}
return true;
}
//! Returns the sum of the elements of a specific dimension
template <typename It>
double TeSum (It begin, It end, int dim)
{
double sum = 0.;
while ( begin != end)
{
if(((*begin)[dim])!= TeMAXFLOAT) // MAXFLOAT is considered invalid value
sum += (*begin)[dim];
++begin;
}
return sum;
}
//! Return the sum of the elements
template <typename It>
double TeSum (It begin, It end)
{
double sum = 0.;
while ( begin != end)
{
if((*begin)!= TeMAXFLOAT) // MAXFLOAT is considered invalid value
sum += (*begin);
++begin;
}
return sum;
}
//! Calculates the mean (first moment) of the elements of a specific dimension
template <typename It>
double TeFirstMoment (It begin, It end, int dim)
{
int number = 0;
double mean = 0.;
while (begin != end)
{
if(((*begin)[dim])!= TeMAXFLOAT) // MAXFLOAT is considered invalid value
{
mean += (*begin)[dim];
number++;
}
++begin;
}
return mean /= number;
}
//! Calculates the mean (first moment) of the elements
template <typename It>
double TeFirstMoment (It begin, It end)
{
int number = 0;
double mean = 0.;
while (begin != end)
{
if((*begin)!= TeMAXFLOAT) // MAXFLOAT is considered invalid value
{
mean += (*begin);
number++;
}
begin++;
}
return mean /= number;
}
//! Calculates the second moment
template <typename It>
double TeSecondMoment (It begin, It end, double mean)
{
int number = 0;
double SSD = 0; //sum of squares of desviation
while (begin != end)
{
if((*begin)!= TeMAXFLOAT) // MAXFLOAT is considered invalid value
{
SSD += pow(( (*begin) - mean), 2);
number++;
}
begin++;
}
return SSD /= number;
}
//! Calculates the second moment
template <typename It>
double TeSecondMoment (It begin, It end, double mean, int dim)
{
int number = 0;
double SSD = 0; //sum of squares of desviation
while (begin != end)
{
if(((*begin)[dim])!= TeMAXFLOAT) // MAXFLOAT is considered invalid value
{
SSD += pow(((*begin)[dim] - mean), 2);
number++;
}
++begin;
}
return SSD /= number;
}
//! calculates the vector with the means of the attributs
template <typename It, typename T>
bool TeMeanVector ( It begin, It end, T& result)
{
int i = 0;
int dim = result.size();
T soma;
for (int m = 0; m < dim ; m++)
soma.push_back(0.);
while (begin != end)
{
for( int j = 0; j < dim; j++)
{
if(((*begin)[j]) != TeMAXFLOAT) // MAXFLOAT is considered invalid value
{
soma[j]+= (*begin)[j];
i++;
}
else
soma[j]= TeMAXFLOAT;
}
begin++;
}
for (int k = 0; k < dim; k++)
{
if(soma[k] != TeMAXFLOAT)
result[k] = soma[k]/i;
else
result[k] = TeMAXFLOAT;
}
return true;
}
//! Calculates the deviations in relation to mean
template <typename It>
bool TeDeviation ( It begin, It end, It result, double mean)
{
while (begin != end)
{
if((*begin) != TeMAXFLOAT) // MAXFLOAT is considered invalid value
*result = double(*begin) - mean;
else
*result = TeMAXFLOAT;
begin++; result++;
}
return true;
}
//! calculates the deviations in relation to mean
template <typename iteratorSet>
bool TeDeviation ( iteratorSet begin, iteratorSet end, double mean, int index=0)
{
//Adds a new attribute in the attribute list of the set
TeAttribute attrRep;
attrRep.rep_.name_ = "Z";
attrRep.rep_.type_ = TeREAL;
begin->addProperty(attrRep);
while (begin != end)
{
double result;
if(((*begin)[index]) != TeMAXFLOAT) // MAXFLOAT is considered invalid value
result = ((*begin)[index]) - mean;
else
result = TeMAXFLOAT;
(*begin).addPropertyValue(Te2String(result, 9));
++begin;
}
return true;
}
/** @} */
#endif
|