File: antsListSampleFunction.hxx

package info (click to toggle)
ants 2.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 10,656 kB
  • sloc: cpp: 84,137; sh: 11,419; perl: 694; xml: 115; makefile: 74; python: 48
file content (128 lines) | stat: -rw-r--r-- 3,495 bytes parent folder | download
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
/*=========================================================================

  Program:   Advanced Normalization Tools
  Module:    $RCSfile: antsListSampleFunction.hxx,v $
  Language:  C++
  Date:      $Date: 2008/10/18 00:20:04 $
  Version:   $Revision: 1.1.1.1 $

  Copyright (c) ConsortiumOfANTS. All rights reserved.
  See accompanying COPYING.txt or
  http://sourceforge.net/projects/advants/files/ANTS/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

#include "antsListSampleFunction.h"

namespace itk
{
namespace ants
{
namespace Statistics
{
/**
 * Constructor
 */
template <class TInputListSample, class TOutput, class TCoordRep>
ListSampleFunction<TInputListSample, TOutput, TCoordRep>
::ListSampleFunction()
{
  this->m_ListSamples.clear();
  this->m_ListSampleWeights.clear();
}

/**
 * Standard "PrintSelf" method
 */
template <class TInputListSample, class TOutput, class 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 <class TInputListSample, class TOutput, class 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 <class TInputListSample, class TOutput, class 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 ITK_NULLPTR;
    }
  }

/**
 * Initialize by setting the input point set
 */
template <class TInputListSample, class TOutput, class 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 <class TInputListSample, class TOutput, class 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 ITK_NULLPTR;
    }
  }
} // end of namespace Statistics
} // end of namespace ants
} // end of namespace itk

#endif