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
|
/*=========================================================================
Program: Advanced Normalization Tools
Copyright (c) ConsortiumOfANTS. All rights reserved.
See accompanying COPYING.txt or
https://github.com/stnava/ANTs/blob/master/ANTSCopyright.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 __antsListSampleFunction_hxx
#define __antsListSampleFunction_hxx
namespace itk
{
namespace ants
{
namespace Statistics
{
/**
* Constructor
*/
template <typename TInputListSample, typename TOutput, typename TCoordRep>
ListSampleFunction<TInputListSample, TOutput, TCoordRep>::ListSampleFunction()
{
this->m_ListSamples.clear();
this->m_ListSampleWeights.clear();
}
/**
* Standard "PrintSelf" method
*/
template <typename TInputListSample, typename TOutput, typename TCoordRep>
void
ListSampleFunction<TInputListSample, TOutput, TCoordRep>::PrintSelf(std::ostream & os, Indent indent) const
{
for (unsigned int d = 0; d < this->m_ListSamples.size(); d++)
{
os << indent << "InputListSample: " << this->m_ListSamples[d] << std::endl;
}
}
template <typename TInputListSample, typename TOutput, typename TCoordRep>
void
ListSampleFunction<TInputListSample, TOutput, TCoordRep>::SetListSampleWeights(const unsigned int idx,
ListSampleWeightArrayType * array)
{
if (idx >= this->m_ListSampleWeights.size())
{
this->m_ListSampleWeights.resize(idx + 1);
this->m_ListSampleWeights[idx] = array;
this->Modified();
}
if (this->m_ListSampleWeights[idx] != array)
{
this->m_ListSampleWeights[idx] = array;
this->Modified();
}
}
template <typename TInputListSample, typename TOutput, typename TCoordRep>
typename ListSampleFunction<TInputListSample, TOutput, TCoordRep>::ListSampleWeightArrayType *
ListSampleFunction<TInputListSample, TOutput, TCoordRep>::GetListSampleWeights(const unsigned int idx)
{
if (idx < this->m_ListSampleWeights.size())
{
return this->m_ListSampleWeights[idx];
}
else
{
return nullptr;
}
}
/**
* Initialize by setting the input point set
*/
template <typename TInputListSample, typename TOutput, typename TCoordRep>
void
ListSampleFunction<TInputListSample, TOutput, TCoordRep>::SetIndexedInputListSample(const unsigned int idx,
const InputListSampleType * ptr)
{
if (idx >= this->m_ListSamples.size())
{
this->m_ListSamples.resize(idx + 1);
this->m_ListSamples[idx] = ptr;
this->Modified();
}
if (this->m_ListSamples[idx] != ptr)
{
this->m_ListSamples[idx] = ptr;
this->Modified();
}
}
template <typename TInputListSample, typename TOutput, typename TCoordRep>
const typename ListSampleFunction<TInputListSample, TOutput, TCoordRep>::InputListSampleType *
ListSampleFunction<TInputListSample, TOutput, TCoordRep>::GetInputListSample(const unsigned int idx) const
{
if (idx < this->m_ListSamples.size())
{
return this->m_ListSamples[idx];
}
else
{
return nullptr;
}
}
} // end of namespace Statistics
} // end of namespace ants
} // end of namespace itk
#endif
|