SimpleITK  1.0.1
sitkFastMarchingUpwindGradientImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 *
3 * Copyright Insight Software Consortium
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18 #ifndef sitkFastMarchingUpwindGradientImageFilter_h
19 #define sitkFastMarchingUpwindGradientImageFilter_h
20 
21 /*
22  * WARNING: DO NOT EDIT THIS FILE!
23  * THIS FILE IS AUTOMATICALLY GENERATED BY THE SIMPLEITK BUILD PROCESS.
24  * Please look at sitkImageFilterTemplate.h.in to make changes.
25  */
26 
27 #include <memory>
28 
29 #include "sitkBasicFilters.h"
30 #include "sitkImageFilter.h"
31 
32 namespace itk {
33  namespace simple {
34 
53  public:
55 
59 
62 
65 
66 
67 
70  SITK_RETURN_SELF_TYPE_HEADER SetTrialPoints ( const std::vector< std::vector<unsigned int> >& TrialPoints ) { this->m_TrialPoints = TrialPoints; return *this; }
71 
74  std::vector< std::vector<unsigned int> > GetTrialPoints() const { return this->m_TrialPoints; }
76  SITK_RETURN_SELF_TYPE_HEADER AddTrialPoint( const std::vector< unsigned int > &point ) { this->m_TrialPoints.push_back(point); return *this;}
78  SITK_RETURN_SELF_TYPE_HEADER ClearTrialPoints( ) { this->m_TrialPoints.clear(); return *this;}
79 
80 
83  SITK_RETURN_SELF_TYPE_HEADER SetNumberOfTargets ( unsigned int NumberOfTargets ) { this->m_NumberOfTargets = NumberOfTargets; return *this; }
84 
88  unsigned int GetNumberOfTargets() const { return this->m_NumberOfTargets; }
89 
93  SITK_RETURN_SELF_TYPE_HEADER SetTargetPoints ( const std::vector< std::vector<unsigned int> >& TargetPoints ) { this->m_TargetPoints = TargetPoints; return *this; }
94 
98  std::vector< std::vector<unsigned int> > GetTargetPoints() const { return this->m_TargetPoints; }
100  SITK_RETURN_SELF_TYPE_HEADER AddTargetPoint( const std::vector< unsigned int > &point ) { this->m_TargetPoints.push_back(point); return *this;}
102  SITK_RETURN_SELF_TYPE_HEADER ClearTargetPoints( ) { this->m_TargetPoints.clear(); return *this;}
103 
104 
108  SITK_RETURN_SELF_TYPE_HEADER SetTargetOffset ( double TargetOffset ) { this->m_TargetOffset = TargetOffset; return *this; }
109 
113  double GetTargetOffset() const { return this->m_TargetOffset; }
114 
118  SITK_RETURN_SELF_TYPE_HEADER SetNormalizationFactor ( double NormalizationFactor ) { this->m_NormalizationFactor = NormalizationFactor; return *this; }
119 
123  double GetNormalizationFactor() const { return this->m_NormalizationFactor; }
130  Image GetGradientImage() const { return this->m_GradientImage; };
131 
138  double GetTargetValue() const { return this->m_TargetValue; };
139 
141  std::string GetName() const { return std::string ("FastMarchingUpwindGradientImageFilter"); }
142 
144  std::string ToString() const;
145 
146 
148  Image Execute ( const Image& image1 );
149 
150 
152  Image Execute ( const Image& image1, const std::vector< std::vector<unsigned int> > & trialPoints, unsigned int numberOfTargets, const std::vector< std::vector<unsigned int> > & targetPoints, double targetOffset, double normalizationFactor );
153 
154 
155  private:
156 
159  typedef Image (Self::*MemberFunctionType)( const Image& image1 );
160  template <class TImageType> Image ExecuteInternal ( const Image& image1 );
161 
162 
163 
164  friend struct detail::MemberFunctionAddressor<MemberFunctionType>;
165 
166  nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
167 
168 
169  std::vector< std::vector<unsigned int> > m_TrialPoints;
170  unsigned int m_NumberOfTargets;
171  std::vector< std::vector<unsigned int> > m_TargetPoints;
174  /* Docs */
176  /* Docs */
178 
179  };
180 
181 
182 
191  SITKBasicFilters_EXPORT Image FastMarchingUpwindGradient ( const Image& image1, const std::vector< std::vector<unsigned int> > & trialPoints = std::vector< std::vector<unsigned int > >(), unsigned int numberOfTargets = 0u, const std::vector< std::vector<unsigned int> > & targetPoints = std::vector< std::vector<unsigned int > >(), double targetOffset = 1, double normalizationFactor = 1.0 );
192 
193  }
194 }
195 #endif
Self & AddTargetPoint(const std::vector< unsigned int > &point)
Add TargetPoints point.
Self & AddTrialPoint(const std::vector< unsigned int > &point)
Add TrialPoints point.
#define SITKBasicFilters_EXPORT
Generates the upwind gradient field of fast marching arrival times.
typelist::MakeTypeList< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t >, BasicPixelID< float >, BasicPixelID< double > >::Type BasicPixelIDTypeList
Self & SetTrialPoints(const std::vector< std::vector< unsigned int > > &TrialPoints)
std::vector< std::vector< unsigned int > > GetTrialPoints() const
Image FastMarchingUpwindGradient(const Image &image1, const std::vector< std::vector< unsigned int > > &trialPoints=std::vector< std::vector< unsigned int > >(), unsigned int numberOfTargets=0u, const std::vector< std::vector< unsigned int > > &targetPoints=std::vector< std::vector< unsigned int > >(), double targetOffset=1, double normalizationFactor=1.0)
Generates the upwind gradient field of fast marching arrival times.
std::vector< std::vector< unsigned int > > GetTargetPoints() const
The main Image class for SimpleITK.
Definition: sitkImage.h:54
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
The base interface for SimpleITK filters that take one input image.
Self & SetTargetPoints(const std::vector< std::vector< unsigned int > > &TargetPoints)