ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkShapePriorSegmentationLevelSetImageFilter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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 itkShapePriorSegmentationLevelSetImageFilter_h
19#define itkShapePriorSegmentationLevelSetImageFilter_h
20
25#include "itkMath.h"
26
27namespace itk
28{
68template <typename TInputImage, typename TFeatureImage, typename TOutputPixelType = float>
70 : public SegmentationLevelSetImageFilter<TInputImage, TFeatureImage, TOutputPixelType>
71{
72public:
73 ITK_DISALLOW_COPY_AND_MOVE(ShapePriorSegmentationLevelSetImageFilter);
74
76 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
77
83
85 itkOverrideGetNameOfClassMacro(ShapePriorSegmentationLevelSetImageFilter);
86
88 using typename Superclass::ValueType;
89 using typename Superclass::OutputImageType;
90 using typename Superclass::FeatureImageType;
91
93 using OutputPixelType = TOutputPixelType;
94
97
100 using ShapeFunctionPointer = typename ShapeFunctionType::Pointer;
101
106
110 using NodeContainerPointer = typename NodeContainerType::Pointer;
111
116
119 virtual void
121 itkGetModifiableObjectMacro(ShapeFunction, ShapeFunctionType);
123
126 itkSetObjectMacro(CostFunction, CostFunctionType);
127 itkGetModifiableObjectMacro(CostFunction, CostFunctionType);
129
132 itkSetObjectMacro(Optimizer, OptimizerType);
133 itkGetModifiableObjectMacro(Optimizer, OptimizerType);
135
141 itkSetMacro(InitialParameters, ParametersType);
142 itkGetConstMacro(InitialParameters, ParametersType);
144
147 void
149 {
150 if (Math::NotExactlyEquals(v, m_ShapePriorSegmentationFunction->GetShapePriorWeight()))
151 {
152 m_ShapePriorSegmentationFunction->SetShapePriorWeight(v);
153 this->Modified();
154 }
155 }
156
157 ValueType
159 {
160 return m_ShapePriorSegmentationFunction->GetShapePriorWeight();
161 }
162
163
166 virtual void
168
174
176 itkGetConstReferenceMacro(CurrentParameters, ParametersType);
177
178protected:
181
182 void
183 PrintSelf(std::ostream & os, Indent indent) const override;
184
187 void
189
192 void
193 GenerateData() override;
194
196 void
198
199private:
205
207};
208} // end namespace itk
209
210#ifndef ITK_MANUAL_INSTANTIATION
211# include "itkShapePriorSegmentationLevelSetImageFilter.hxx"
212#endif
213
214#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void Modified() const
Generic representation for an optimization method.
Represents the base class of maximum aprior (MAP) cost function used ShapePriorSegmentationLevelSetIm...
This function is used in ShapePriorSegmentationLevelSetFilter to segment structures in an image based...
virtual void SetShapePriorSegmentationFunction(ShapePriorSegmentationFunctionType *s)
virtual void SetShapeFunction(ShapeFunctionType *s)
~ShapePriorSegmentationLevelSetImageFilter() override=default
ShapePriorSegmentationLevelSetFunction< OutputImageType, FeatureImageType > ShapePriorSegmentationFunctionType
void PrintSelf(std::ostream &os, Indent indent) const override
void ExtractActiveRegion(NodeContainerType *ptr)
virtual ShapePriorSegmentationFunctionType * GetShapePriorSegmentationFunction()
This class is a base for the Optimization methods that optimize a single valued function.
Implements transparent reference counting.
bool NotExactlyEquals(const TInput1 &x1, const TInput2 &x2)
Definition itkMath.h:730
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
CostFunctionTemplate< double > CostFunction