/usr/include/OTB-5.8/otbStatisticsXMLFileReader.txx is in libotb-dev 5.8.0+dfsg-3.
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 | /*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef otbStatisticsXMLFileReader_txx
#define otbStatisticsXMLFileReader_txx
#include "otbStatisticsXMLFileReader.h"
#include "itkMacro.h"
#include "itksys/SystemTools.hxx"
#include "otb_tinyxml.h"
#include "otbStringUtils.h"
namespace otb {
template < class TMeasurementVector >
StatisticsXMLFileReader<TMeasurementVector>
::StatisticsXMLFileReader(): m_FileName(""),
m_IsUpdated(false)
{}
template < class TMeasurementVector >
unsigned int
StatisticsXMLFileReader<TMeasurementVector>
::GetNumberOfOutputs()
{
return m_MeasurementVectorContainer.size() + m_GenericMapContainer.size();
}
template < class TMeasurementVector >
std::vector<std::string>
StatisticsXMLFileReader<TMeasurementVector>
::GetStatisticVectorNames()
{
// Read the xml file once
if(!m_IsUpdated)
{
this->Read();
}
std::vector<std::string> output;
for (unsigned int i=0 ; i < m_MeasurementVectorContainer.size() ; ++i )
{
output.push_back(m_MeasurementVectorContainer[i].first);
}
return output;
}
template < class TMeasurementVector >
std::vector<std::string>
StatisticsXMLFileReader<TMeasurementVector>
::GetStatisticMapNames()
{
// Read the xml file once
if(!m_IsUpdated)
{
this->Read();
}
std::vector<std::string> output;
for ( GenericMapContainer::iterator it = m_GenericMapContainer.begin() ;
it != m_GenericMapContainer.end() ;
++it)
{
output.push_back(it->first);
}
return output;
}
template < class TMeasurementVector >
typename StatisticsXMLFileReader<TMeasurementVector>
::MeasurementVectorType
StatisticsXMLFileReader<TMeasurementVector>
::GetStatisticVectorByName(const char * statisticName)
{
// Read the xml file once
if(!m_IsUpdated)
{
this->Read();
}
// Check if the name of the Statistic is present
bool found = false;
unsigned int index = 0;
for(unsigned int idx = 0; idx < m_MeasurementVectorContainer.size() ; ++idx)
{
if(strcmp(m_MeasurementVectorContainer[idx].first.c_str(), statisticName) == 0 )
{
found = true;
index = idx;
}
}
// if token not found throw an axception
if(!found)
itkExceptionMacro(<<"No entry corresponding to the token selected ("<<statisticName<<") in the XML file");
return m_MeasurementVectorContainer[index].second;
}
template < class TMeasurementVector >
template <typename MapType>
MapType
StatisticsXMLFileReader<TMeasurementVector>
::GetStatisticMapByName(const char * statisticName)
{
// Read the xml file once
if(!m_IsUpdated)
{
this->Read();
}
// Check if the name of the Statistic is present
std::string statName(statisticName);
if (m_GenericMapContainer.count(statName) == 0)
{
itkExceptionMacro(<<"No entry corresponding to the token selected ("<<statName<<") in the XML file");
}
MapType outputMap;
typename MapType::key_type tmpKey;
typename MapType::mapped_type tmpVal;
for ( GenericMapType::iterator it = m_GenericMapContainer[statName].begin() ;
it != m_GenericMapContainer[statName].end() ;
++it)
{
tmpKey = boost::lexical_cast<typename MapType::key_type>(it->first);
tmpVal = boost::lexical_cast<typename MapType::mapped_type>(it->second);
outputMap[tmpKey] = tmpVal;
}
return outputMap;
}
template < class TMeasurementVector >
void
StatisticsXMLFileReader<TMeasurementVector>
::Read()
{
// Check if the filename is not empty
if(m_FileName.empty())
itkExceptionMacro(<<"The XML output FileName is empty, please set the filename via the method SetFileName");
// Check that the right extension is given : expected .xml */
std::string extension = itksys::SystemTools::GetFilenameLastExtension(m_FileName);
if (itksys::SystemTools::LowerCase(extension) != ".xml")
{
itkExceptionMacro(<<extension
<<" is a wrong Extension FileName : Expected .xml");
}
// Clean outputs
m_MeasurementVectorContainer.clear();
m_GenericMapContainer.clear();
// Open the xml file
TiXmlDocument doc(m_FileName.c_str());
if (!doc.LoadFile())
{
itkExceptionMacro(<<"Can't open file "<<m_FileName);
}
TiXmlHandle hDoc(&doc);
TiXmlElement *root = hDoc.FirstChildElement("FeatureStatistics").ToElement();
if (root)
{
// Iterate through the tree to get all the stats
for( TiXmlElement* currentStat = root->FirstChildElement();
currentStat != ITK_NULLPTR;
currentStat = currentStat->NextSiblingElement() )
{
InputDataType currentStatisticVector;
// Store the stat type name
currentStatisticVector.first = currentStat->Attribute("name");
// The size is not stored in the XML file
// Store the value in a std::vector, get the size and then
// build a measurement vector
std::vector<double> tempMeasurementVector;
for( TiXmlElement* sample = currentStat->FirstChildElement("StatisticVector");
sample != ITK_NULLPTR;
sample = sample->NextSiblingElement() )
{
// Get the current value of the statistic vector
double value;
sample->QueryDoubleAttribute("value", &value);
// Store the value
tempMeasurementVector.push_back(value);
}
// resize the Measurement Vector
currentStatisticVector.second.SetSize(tempMeasurementVector.size());
for(unsigned int i = 0; i < tempMeasurementVector.size(); ++i)
currentStatisticVector.second.SetElement(i,
(static_cast<InputValueType>(tempMeasurementVector[i])));
m_MeasurementVectorContainer.push_back(currentStatisticVector);
}
}
// Parse Map statistics
std::string key;
std::string value;
root = hDoc.FirstChildElement("GeneralStatistics").ToElement();
if (root)
{
// Iterate through the tree to get all the stats
for( TiXmlElement* currentStat = root->FirstChildElement();
currentStat != ITK_NULLPTR;
currentStat = currentStat->NextSiblingElement() )
{
GenericMapType currentMap;
std::string currentName(currentStat->Attribute("name"));
for( TiXmlElement* sample = currentStat->FirstChildElement("StatisticMap");
sample != ITK_NULLPTR;
sample = sample->NextSiblingElement() )
{
// Get the current pair of the statistic map
const char *c_key = sample->Attribute("key");
const char *c_value = sample->Attribute("value");
if (c_key == ITK_NULLPTR)
{
itkExceptionMacro("'key' attribute not found in StatisticMap !");
}
if (c_value == ITK_NULLPTR)
{
itkExceptionMacro("'value' attribute not found in StatisticMap !");
}
key = std::string(c_key);
value = std::string(c_value);
// Store the pair
currentMap[key] = value;
}
m_GenericMapContainer[currentName] = currentMap;
}
}
// Reader is up-to-date
m_IsUpdated = true;
}
template < class TMeasurementVector >
void
StatisticsXMLFileReader<TMeasurementVector>
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
// Call superclass implementation
Superclass::PrintSelf(os, indent);
// Print info about statistics
os << indent << "Input FileName: "<< m_FileName << std::endl;
os << indent << "Vector statistics: ";
for (unsigned int i=0 ; i < m_MeasurementVectorContainer.size() ; ++i)
{
if (i>0) os <<", ";
os << m_MeasurementVectorContainer[i].first;
}
os << std::endl;
os << indent << "Map statistics: ";
for (GenericMapContainer::const_iterator it = m_GenericMapContainer.begin() ; it != m_GenericMapContainer.end() ; ++it)
{
if (it != m_GenericMapContainer.begin()) os <<", ";
os << it->first;
}
os << std::endl;
}
} // End namespace otb
#endif
|