/usr/include/OTB-5.8/otbModelComponentBase.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 | /*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
Some parts of this code are covered by the IMT copyright.
See IMTCopyright.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 otbModelComponentBase_txx
#define otbModelComponentBase_txx
#include <iostream>
#include "otbMacro.h"
#include "otbModelComponentBase.h"
namespace otb
{
namespace Statistics
{
template<class TSample>
ModelComponentBase<TSample>
::ModelComponentBase()
{
m_Sample = ITK_NULLPTR;
m_PdfFunction = ITK_NULLPTR;
m_CdfFunction = ITK_NULLPTR;
m_SampleModified = 0;
}
template<class TSample>
void
ModelComponentBase<TSample>
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Sample: ";
if (m_Sample != ITK_NULLPTR)
{
os << m_Sample << std::endl;
}
else
{
os << "not set." << std::endl;
}
os << indent << "Membership Function for pdf: ";
if (m_PdfFunction != ITK_NULLPTR)
{
os << m_PdfFunction << std::endl;
}
else
{
os << "not instantiated yet." << std::endl;
}
os << indent << "Membership Function for cdf: ";
if (m_CdfFunction != ITK_NULLPTR)
{
os << m_CdfFunction << std::endl;
}
else
{
os << "not instantiated yet." << std::endl;
}
os << indent << "Sample are modified and parameters updated: ";
os << m_SampleModified << std::endl;
}
template <class TSample>
void
ModelComponentBase<TSample>
::ShowParameters(std::ostream& os, itk::Indent indent) const
{
os << indent << "Generic class of model-component. Parameters :\n";
for (unsigned int i = 0; i < m_Parameters.Size(); ++i)
os << indent << m_Parameters[i] << "\n";
}
template<class TSample>
void
ModelComponentBase<TSample>
::SetSample(const TSample* sample)
{
m_Sample = sample;
m_SampleModified = 1;
}
template<class TSample>
const TSample*
ModelComponentBase<TSample>
::GetSample() const
{
return m_Sample;
}
template<class TSample>
void
ModelComponentBase<TSample>
::SetParameters(const ParametersType& parameters)
{
if (m_Parameters != parameters) m_Parameters = parameters;
}
template<class TSample>
void
ModelComponentBase<TSample>
::SetPdfMembershipFunction(MembershipFunctionType* function)
{
m_PdfFunction = function;
}
template<class TSample>
void
ModelComponentBase<TSample>
::SetCdfMembershipFunction(MembershipFunctionType* function)
{
m_CdfFunction = function;
}
template<class TSample>
typename ModelComponentBase<TSample>::MembershipFunctionType*
ModelComponentBase<TSample>
::GetPdfMembershipFunction()
{
return m_PdfFunction;
}
template<class TSample>
typename ModelComponentBase<TSample>::MembershipFunctionType*
ModelComponentBase<TSample>
::GetCdfMembershipFunction()
{
return m_CdfFunction;
}
template<class TSample>
inline double
ModelComponentBase<TSample>
::Pdf(MeasurementVectorType& measurements)
{
return this->m_PdfFunction->Evaluate(measurements);
}
template<class TSample>
inline double
ModelComponentBase<TSample>
::Cdf(MeasurementVectorType& measurements)
{
return m_CdfFunction->Evaluate(measurements);
}
template <class TSample>
int
ModelComponentBase<TSample>
::IsSampleModified()
{
return m_SampleModified;
}
template<class TSample>
void
ModelComponentBase<TSample>
::Update()
{
if (m_SampleModified) this->GenerateData();
m_SampleModified = 0;
}
template <class TSample>
void
ModelComponentBase<TSample>
::GenerateData()
{
/** subclasses should ITK_OVERRIDE this function to perform
* parameter estimation. But it allows switching m_SampleModified
* when necessary.
*/
m_SampleModified = 0;
}
} // end of namespace Statistics
} // end of namespace otb
#endif
|