ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkCurvesLevelSetFunction.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 itkCurvesLevelSetFunction_h
19 #define itkCurvesLevelSetFunction_h
20 
22 
23 namespace itk
24 {
61 template< typename TImageType, typename TFeatureImageType = TImageType >
62 class ITK_TEMPLATE_EXPORT CurvesLevelSetFunction:
63  public SegmentationLevelSetFunction< TImageType, TFeatureImageType >
64 {
65 public:
72  typedef TFeatureImageType FeatureImageType;
73 
75  itkNewMacro(Self);
76 
79 
81  typedef typename SuperSuperclass::PixelType PixelType;
82  typedef typename Superclass::ImageType ImageType;
83  typedef typename Superclass::NeighborhoodType NeighborhoodType;
84  typedef typename Superclass::ScalarValueType ScalarValueType;
85  typedef typename Superclass::FeatureScalarType FeatureScalarType;
86  typedef typename Superclass::RadiusType RadiusType;
89  typedef typename Superclass::VectorImageType VectorImageType;
90 
92  itkStaticConstMacro(ImageDimension, unsigned int,
93  Superclass::ImageDimension);
94 
96  virtual void CalculateSpeedImage() ITK_OVERRIDE;
97 
99  virtual void CalculateAdvectionImage() ITK_OVERRIDE;
100 
102  virtual ScalarValueType CurvatureSpeed(const NeighborhoodType & neighborhood,
103  const FloatOffsetType & offset, GlobalDataStruct *gd) const ITK_OVERRIDE
104  { return this->PropagationSpeed(neighborhood, offset, gd); }
105 
108  void SetDerivativeSigma(const double v)
109  { m_DerivativeSigma = v; }
111  { return m_DerivativeSigma; }
113 
114  virtual void Initialize(const RadiusType & r) ITK_OVERRIDE;
115 
116 protected:
118  m_Center(0),
119  m_DerivativeSigma(1.0)
120  {
121  //Curvature term is the minimal curvature.
122  this->UseMinimalCurvatureOn();
123  this->SetAdvectionWeight(NumericTraits< ScalarValueType >::OneValue());
124  this->SetPropagationWeight(NumericTraits< ScalarValueType >::OneValue());
125  this->SetCurvatureWeight(NumericTraits< ScalarValueType >::OneValue());
126  }
127 
128  virtual ~CurvesLevelSetFunction() ITK_OVERRIDE {}
129 
130  ITK_DISALLOW_COPY_AND_ASSIGN(CurvesLevelSetFunction);
131 
132  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE
133  {
134  Superclass::PrintSelf(os, indent);
135  os << indent << "DerivativeSigma: " << m_DerivativeSigma << std::endl;
136  }
137 
138 private:
139 
141  std::slice x_slice[ImageDimension];
142 
145 
147  OffsetValueType m_xStride[ImageDimension];
148 
150 };
151 } // end namespace itk
152 
153 #ifndef ITK_MANUAL_INSTANTIATION
154 #include "itkCurvesLevelSetFunction.hxx"
155 #endif
156 
157 #endif
LevelSetFunction< TImageType > SuperSuperclass
SegmentationLevelSetFunction< TImageType, TFeatureImageType > Superclass
Light weight base class for most itk classes.
The LevelSetFunction class is a generic function object which can be used to create a level set metho...
Superclass::PixelType PixelType
void PrintSelf(std::ostream &os, Indent indent) const override
signed long OffsetValueType
Definition: itkIntTypes.h:154
Superclass::ScalarValueType ScalarValueType
Superclass::FloatOffsetType FloatOffsetType
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
SmartPointer< const Self > ConstPointer
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:62
SuperSuperclass::FloatOffsetType FloatOffsetType
Superclass::VectorImageType VectorImageType
SuperSuperclass::GlobalDataStruct GlobalDataStruct
This function is used in CurvesLevelSetImageFilter to segment structures in images based on user supp...
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Superclass::NeighborhoodType NeighborhoodType
Define additional traits for native types such as int or float.
SuperSuperclass::PixelType PixelType
Superclass::FeatureScalarType FeatureScalarType