/usr/include/OTB-5.8/otbFuzzyVariable.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 | /*=========================================================================
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 otbFuzzyVariable_txx
#define otbFuzzyVariable_txx
#include "otbFuzzyVariable.h"
#include "otbMacro.h"
namespace otb
{
template <class TLabel, class TPrecision>
FuzzyVariable<TLabel, TPrecision>::FuzzyVariable()
{}
template <class TLabel, class TPrecision>
void
FuzzyVariable<TLabel, TPrecision>::SetMembership(const LabelType& var,
const PrecisionType & v1,
const PrecisionType & v2,
const PrecisionType & v3,
const PrecisionType & v4)
{
// Check if values are ordered correctly
if( v1>v2 || v2>v3 || v3>v4)
itkExceptionMacro(<< "Values have to be v1<=v2<=v3<=v4");
// Build the membership parameters
ParametersType parameters;
parameters[0] = v1;
parameters[1] = v2;
parameters[2] = v3;
parameters[3] = v4;
parameters[4] = static_cast<TPrecision>(0);
parameters[5] = static_cast<TPrecision>(1);
// Insert it in the parameters map
m_MembershipFunctions[var]=parameters;
// Call modified
this->Modified();
}
template <class TLabel, class TPrecision>
void
FuzzyVariable<TLabel, TPrecision>::SetMembership(const LabelType& var,
const PrecisionType & v1,
const PrecisionType & v2,
const PrecisionType & v3,
const PrecisionType & v4,
const PrecisionType & min,
const PrecisionType & max)
{
// Check if values are ordered correctly
if( v1>v2 || v2>v3 || v3>v4)
itkExceptionMacro(<< "Values have to be v1<=v2<=v3<=v4");
if( min>=max)
itkExceptionMacro(<< "Values have to be min<max");
// Build the membership parameters
ParametersType parameters;
parameters[0] = v1;
parameters[1] = v2;
parameters[2] = v3;
parameters[3] = v4;
parameters[4] = min;
parameters[5] = max;
// Insert it in the parameters map
m_MembershipFunctions[var]=parameters;
// Call modified
this->Modified();
}
template <class TLabel, class TPrecision>
void
FuzzyVariable<TLabel, TPrecision>
::RemoveMembership(const LabelType & var)
{
// Erase one parameter
m_MembershipFunctions.erase(var);
// Call Modified()
this->Modified();
}
template <class TLabel, class TPrecision>
void
FuzzyVariable<TLabel, TPrecision>
::Clear()
{
// Clear the membership parameters map
m_MembershipFunctions.clear();
// Call Modified()
this->Modified();
}
template <class TLabel, class TPrecision>
typename FuzzyVariable<TLabel, TPrecision>
::PrecisionType
FuzzyVariable<TLabel, TPrecision>
::GetMembership(const LabelType & var, const PrecisionType & value) const
{
// Declare output
PrecisionType output = itk::NumericTraits<PrecisionType>::Zero;
// Retrieve parameters for the given membership function
typename ParametersMapType::const_iterator mapIt = m_MembershipFunctions.find(var);
// If var exists in the parameters map
if(mapIt!=m_MembershipFunctions.end())
{
// Retrieve parameters
ParametersType parameters = mapIt->second;
// Remaining of the code is trapezoidal function
if( value < parameters[0] || value >= parameters[3] )
{
output = parameters[4];
}
else if( value >= parameters[0]
&& value < parameters[1] )
{
if(parameters[1]>parameters[0])
{
output = static_cast<TPrecision>(parameters[4] + (value - parameters[0])
/(parameters[1] - parameters[0])
*(parameters[5] - parameters[4]));
}
else
{
output = parameters[5];
}
}
if( value >= parameters[1]
&& value < parameters[2] )
{
output = parameters[5];
}
if( value >= parameters[2]
&& value < parameters[3] )
{
if(parameters[3]>parameters[2])
{
output = static_cast<TPrecision>(parameters[4] + (parameters[3] - value)
/(parameters[3] - parameters[2])
*(parameters[5] - parameters[4]));
}
else
{
output = parameters[5];
}
}
}
// Return the membership value
return output;
}
template <class TLabel, class TPrecision>
typename FuzzyVariable<TLabel, TPrecision>
::MembershipValueType
FuzzyVariable<TLabel, TPrecision>
::GetMembership(const PrecisionType & value) const
{
// Build the output membership map
MembershipValueType output;
// Walk the membership parameters map
for(typename ParametersMapType::const_iterator mapIt = m_MembershipFunctions.begin();
mapIt!=m_MembershipFunctions.end(); ++mapIt)
{
// Compute the membership
output[mapIt->first] = this->GetMembership(mapIt->first, value);
}
// Return output
return output;
}
template <class TLabel, class TPrecision>
typename FuzzyVariable<TLabel, TPrecision>
::LabelType
FuzzyVariable<TLabel, TPrecision>
::GetMaxVar(const PrecisionType & value) const
{
// If parameters map is empty, throw an exception
if(m_MembershipFunctions.empty())
{
itkExceptionMacro(<<"Membership parameters map is empty");
}
// First retrieve all membership values
MembershipValueType memberships = this->GetMembership(value);
// Define an iterator on the membership parameters map
typename MembershipValueType::const_iterator mapIt = memberships.begin();
// Look for the higher value
LabelType higherVar = mapIt->first;
PrecisionType higherVal = mapIt->second;
++mapIt;
while(mapIt!=memberships.end())
{
if(mapIt->second > higherVal)
{
higherVal = mapIt->second;
higherVar = mapIt->first;
}
++mapIt;
}
// Return the higher var
return higherVar;
}
template <class TLabel, class TPrecision>
void
FuzzyVariable<TLabel, TPrecision>
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
Superclass::PrintSelf(os, indent);
}
template <class TLabel, class TPrecision>
std::ostream &
FuzzyVariable<TLabel, TPrecision>
::PrintMembershipValueType(std::ostream & out,
const MembershipValueType & labelMap)
{
// Define an iterator on the label set
typedef std::map<TLabel, TPrecision> LabelMapType;
typename LabelMapType::const_iterator it = labelMap.begin();
// Open the set
out<<"{";
// Append the set elements
while(it != labelMap.end())
{
out<<it->first<<" : "<<it->second;
++it;
if(it != labelMap.end())
out<<", ";
}
// close the set
out<<"}";
// Return
return out;
}
} // end namespace otb
#endif
|