/usr/include/OTB-5.8/otbDecisionTree.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 | /*=========================================================================
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 otbDecisionTree_txx
#define otbDecisionTree_txx
#include "otbDecisionTree.h"
#include "otbMacro.h"
#include "itkNumericTraits.h"
namespace otb
{
/**
* Constructor
*/
template <class AttributeValueType, class LabelType>
DecisionTree<AttributeValueType, LabelType>
::DecisionTree()
{
m_TreeMap = new TreeMapType;
m_IsFinal = true;
m_Label = static_cast<LabelType>(0);
}
/**
* Destructor
*/
template <class AttributeValueType, class LabelType>
DecisionTree<AttributeValueType, LabelType>
::~DecisionTree()
{
delete m_TreeMap;
}
template <class AttributeValueType, class LabelType>
void
DecisionTree<AttributeValueType, LabelType>
::AddBranch(AttributeValueType attr, DecisionTreeTestType testType, Pointer branch)
{
m_IsFinal = false;
KeyType key = KeyType(attr, testType);
(*m_TreeMap)[key] = branch;
}
template <class AttributeValueType, class LabelType>
void
DecisionTree<AttributeValueType, LabelType>
::AddBranch(AttributeValueType attr, Pointer branch)
{
m_IsFinal = false;
KeyType key = KeyType(attr, EQ);
(*m_TreeMap)[key] = branch;
}
template <class AttributeValueType, class LabelType>
void
DecisionTree<AttributeValueType, LabelType>
::AddBranch(AttributeValueType attr, DecisionTreeTestType testType, LabelType label)
{
m_IsFinal = true;
KeyType key = KeyType(attr, testType);
m_LabelMap[key] = label;
}
template <class AttributeValueType, class LabelType>
void
DecisionTree<AttributeValueType, LabelType>
::AddBranch(AttributeValueType attr, LabelType label)
{
m_IsFinal = true;
KeyType key = KeyType(attr, EQ);
m_LabelMap[key] = label;
}
template <class AttributeValueType, class LabelType>
LabelType
DecisionTree<AttributeValueType, LabelType>
::Decide(const ExampleType example)
{
AttributeValueType attrValue = example[m_Attribute];
otbMsgDevMacro( << "Trying to match attribute " << m_Attribute << " with value " << attrValue );
bool found = false;
KeyType key;
if( m_IsFinal )
{
typename LabelMapType::const_iterator lmIt = m_LabelMap.begin();
while( lmIt != m_LabelMap.end() )
{
KeyType theKey = lmIt->first;
DecisionTreeTestType theTest = theKey.second;
AttributeValueType theValue = theKey.first;
switch( theTest )
{
case LT:
if( attrValue < theValue )
return lmIt->second;
break;
case LE:
if( attrValue <= theValue )
return lmIt->second;
break;
case EQ:
if( attrValue == theValue )
return lmIt->second;
break;
case GE:
if( attrValue >= theValue )
return lmIt->second;
break;
case GT:
if( attrValue > theValue )
return lmIt->second;
break;
}
++lmIt;
}
// if we get here it means that a verified test was not found
itkGenericExceptionMacro(<< "Example could not be handled by decision tree.");
}
else
{
found = false;
// Look for branches matching the test on the attribute
std::vector< KeyType > candidateKeys;
typename TreeMapType::const_iterator tmIt = m_TreeMap->begin();
while( tmIt != m_TreeMap->end() )
{
KeyType theKey = tmIt->first;
DecisionTreeTestType theTest = theKey.second;
AttributeValueType theValue = theKey.first;
switch( theTest )
{
case LT:
if( attrValue < theValue )
{
candidateKeys.push_back( theKey );
found = true;
}
break;
case LE:
if( attrValue <= theValue )
{
candidateKeys.push_back( theKey );
found = true;
}
break;
case EQ:
if( attrValue == theValue )
{
candidateKeys.push_back( theKey );
found = true;
}
break;
case GE:
if( attrValue >= theValue )
{
candidateKeys.push_back( theKey );
found = true;
}
break;
case GT:
if( attrValue > theValue )
{
candidateKeys.push_back( theKey );
found = true;
}
break;
}
++tmIt;
}
if( ! found ) // attribute
// not found
// in the map
{
itkGenericExceptionMacro(<< "Example could not be handled by decision tree.");
}
else
{
// If we found one or several matching tests
typename std::vector< KeyType >::const_iterator ckIt = candidateKeys.begin();
while ( ckIt != candidateKeys.end() )
{
otbMsgDevMacro(<< (*ckIt).first << " " << (*ckIt).second);
Pointer child = (*m_TreeMap)[(*ckIt)];
return child->Decide(example);
}
}
}
//added return statement to suppress warning, but if/then/else
//conditions make sure it is never reached
return static_cast<LabelType>(0);
}
/**
*PrintSelf method
*/
template <class AttributeValueType, class LabelType>
void
DecisionTree<AttributeValueType, LabelType>
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
Superclass::PrintSelf(os, indent);
}
} // end namespace otb
#endif
|