ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkRegionBasedLevelSetFunction.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 itkRegionBasedLevelSetFunction_h
19#define itkRegionBasedLevelSetFunction_h
20
23#include "vnl/vnl_matrix_fixed.h"
24
25namespace itk
26{
46template <typename TInput, // LevelSetImageType
47 typename TFeature, // FeatureImageType
48 typename TSharedData>
49class ITK_TEMPLATE_EXPORT RegionBasedLevelSetFunction : public FiniteDifferenceFunction<TInput>
50{
51public:
52 ITK_DISALLOW_COPY_AND_MOVE(RegionBasedLevelSetFunction);
53
59
60 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
61
62 // itkNewMacro() is not provided since this is an abstract class.
63
65 itkOverrideGetNameOfClassMacro(RegionBasedLevelSetFunction);
66
68 using TimeStepType = double;
69 using typename Superclass::ImageType;
70 using typename Superclass::PixelType;
72 using typename Superclass::RadiusType;
73 using typename Superclass::NeighborhoodType;
75 using typename Superclass::FloatOffsetType;
77
78 /* This structure is derived from LevelSetFunction and stores intermediate
79 values for computing time step sizes */
107
108 using InputImageType = TInput;
109 using InputImageConstPointer = typename InputImageType::ConstPointer;
110 using InputImagePointer = typename InputImageType::Pointer;
111 using InputPixelType = typename InputImageType::PixelType;
112 using InputIndexType = typename InputImageType::IndexType;
113 using InputIndexValueType = typename InputImageType::IndexValueType;
114 using InputSizeType = typename InputImageType::SizeType;
115 using InputSizeValueType = typename InputImageType::SizeValueType;
116 using InputRegionType = typename InputImageType::RegionType;
117 using InputPointType = typename InputImageType::PointType;
118
119 using FeatureImageType = TFeature;
120 using FeatureImageConstPointer = typename FeatureImageType::ConstPointer;
121 using FeaturePixelType = typename FeatureImageType::PixelType;
122 using FeatureIndexType = typename FeatureImageType::IndexType;
123 using FeatureSpacingType = typename FeatureImageType::SpacingType;
124 using FeatureOffsetType = typename FeatureImageType::OffsetType;
125
126 using SharedDataType = TSharedData;
127 using SharedDataPointer = typename SharedDataType::Pointer;
128
131
132 void
134 {
135 this->m_DomainFunction = f;
136 }
137
138 virtual void
140 {
141 this->SetRadius(r);
142
143 // Dummy neighborhood.
145 it.SetRadius(r);
146
147 // Find the center index of the neighborhood.
148 m_Center = it.Size() / 2;
149
150 // Get the stride length for each axis.
151 for (unsigned int i = 0; i < ImageDimension; ++i)
152 {
153 m_xStride[i] = it.GetStride(i);
154 }
155 }
156
157#if !defined(ITK_WRAPPING_PARSER)
158 void
160 {
161 this->m_SharedData = sharedDataIn;
162 }
163#endif
164
165 void
166 UpdateSharedData(bool forceUpdate);
167
168 void *
169 GetGlobalDataPointer() const override
170 {
171 return new GlobalDataStruct;
172 }
173
174 TimeStepType
175 ComputeGlobalTimeStep(void * GlobalData) const override;
176
179 ComputeUpdate(const NeighborhoodType & neighborhood,
180 void * globalData,
181 const FloatOffsetType & = FloatOffsetType(0.0)) override;
182
183 void
188
189 virtual const FeatureImageType *
191 {
192 return m_FeatureImage.GetPointer();
193 }
194 virtual void
196 {
197 m_FeatureImage = f;
198
199 FeatureSpacingType spacing = m_FeatureImage->GetSpacing();
200 for (unsigned int i = 0; i < ImageDimension; ++i)
201 {
202 this->m_InvSpacing[i] = 1 / spacing[i];
203 }
204 }
205
207 virtual VectorType
208 AdvectionField(const NeighborhoodType &, const FloatOffsetType &, GlobalDataStruct * = 0) const
209 {
210 return this->m_ZeroVectorConstant;
211 }
212
214 void
216 {
217 this->m_AreaWeight = nu;
218 }
219 ScalarValueType
221 {
222 return this->m_AreaWeight;
223 }
224
226 void
228 {
229 this->m_Lambda1 = lambda1;
230 }
231 ScalarValueType
233 {
234 return this->m_Lambda1;
235 }
236
238 void
240 {
241 this->m_Lambda2 = lambda2;
242 }
243 ScalarValueType
245 {
246 return this->m_Lambda2;
247 }
248
250 void
252 {
253 this->m_OverlapPenaltyWeight = gamma;
254 }
255 ScalarValueType
257 {
258 return this->m_OverlapPenaltyWeight;
259 }
260
262 virtual void
267 ScalarValueType
269 {
270 return m_CurvatureWeight;
271 }
272
273 void
275 {
276 this->m_AdvectionWeight = iA;
277 }
278 ScalarValueType
280 {
281 return this->m_AdvectionWeight;
282 }
283
285 void
290 ScalarValueType
295
297 void
299 {
300 this->m_VolumeMatchingWeight = tau;
301 }
302 ScalarValueType
304 {
305 return this->m_VolumeMatchingWeight;
306 }
307
309 void
311 {
312 this->m_Volume = volume;
313 }
314 ScalarValueType
315 GetVolume() const
316 {
317 return this->m_Volume;
318 }
319
321 void
322 SetFunctionId(const unsigned int iFid)
323 {
324 this->m_FunctionId = iFid;
325 }
326
327 void
328 ReleaseGlobalDataPointer(void * GlobalData) const override
329 {
330 delete (GlobalDataStruct *)GlobalData;
331 }
332
333 virtual ScalarValueType
334 ComputeCurvature(const NeighborhoodType &, const FloatOffsetType &, GlobalDataStruct * gd);
335
338 virtual ScalarValueType
339 LaplacianSmoothingSpeed(const NeighborhoodType &, const FloatOffsetType &, GlobalDataStruct * = 0) const
340 {
342 }
343
346 virtual ScalarValueType
347 CurvatureSpeed(const NeighborhoodType &, const FloatOffsetType &, GlobalDataStruct * = 0) const
348 {
350 }
351
356 virtual void
359
360protected:
362 ~RegionBasedLevelSetFunction() override = default;
363
366
369
371
373
376
379
382
385
388
391
394
396
399
400 unsigned int m_FunctionId{};
401
406
407 static double m_WaveDT;
408 static double m_DT;
409
410 void
412
416 ComputeGlobalTerm(const ScalarValueType & imagePixel, const InputIndexType & inputIndex);
417
422 virtual ScalarValueType
423 ComputeInternalTerm(const FeaturePixelType & iValue, const FeatureIndexType & iIdx) = 0;
424
428 virtual ScalarValueType
429 ComputeExternalTerm(const FeaturePixelType & iValue, const FeatureIndexType & iIdx) = 0;
430
435 virtual ScalarValueType
437
444
449
453 ComputeLaplacian(GlobalDataStruct * gd);
454
456 void
457 ComputeHessian(const NeighborhoodType & it, GlobalDataStruct * globalData);
458
460 virtual void
462
465 virtual void
467
468 bool m_UpdateC{};
469
472 static VectorType
474
477};
478} // end namespace itk
479
480#ifndef ITK_MANUAL_INSTANTIATION
481# include "itkRegionBasedLevelSetFunction.hxx"
482#endif
483
484#endif
ConstNeighborhoodIterator< TInput, DefaultBoundaryConditionType > NeighborhoodType
static constexpr unsigned int ImageDimension
Vector< float, Self::ImageDimension > FloatOffsetType
Vector< PixelRealType, Self::ImageDimension > NeighborhoodScalesType
typename ConstNeighborhoodIterator< TInput >::RadiusType RadiusType
void SetRadius(const RadiusType &r)
Simulate a standard C array with copy semantics.
Base class of the Heaviside function.
void SetRadius(const SizeType &)
NeighborIndexType Size() const
OffsetValueType GetStride(DimensionValueType axis) const
void SetSharedData(SharedDataPointer sharedDataIn)
typename InputImageType::SizeType InputSizeType
typename FeatureImageType::SpacingType FeatureSpacingType
virtual ScalarValueType ComputeInternalTerm(const FeaturePixelType &iValue, const FeatureIndexType &iIdx)=0
Compute the internal term.
HeavisideStepFunctionBase< InputPixelType, InputPixelType > HeavisideFunctionType
typename InputImageType::ConstPointer InputImageConstPointer
typename InputImageType::PixelType InputPixelType
~RegionBasedLevelSetFunction() override=default
virtual void SetFeatureImage(const FeatureImageType *f)
void SetOverlapPenaltyWeight(const ScalarValueType &gamma)
typename InputImageType::RegionType InputRegionType
virtual ScalarValueType LaplacianSmoothingSpeed(const NeighborhoodType &, const FloatOffsetType &, GlobalDataStruct *=0) const
Laplacian smoothing speed can be used to spatially modify the effects of laplacian smoothing of the l...
ScalarValueType ComputeVolumeRegularizationTerm()
Compute the overlap term.
TimeStepType ComputeGlobalTimeStep(void *GlobalData) const override
typename InputImageType::Pointer InputImagePointer
typename FeatureImageType::PixelType FeaturePixelType
typename FeatureImageType::IndexType FeatureIndexType
typename InputImageType::SizeValueType InputSizeValueType
void ReleaseGlobalDataPointer(void *GlobalData) const override
typename SharedDataType::Pointer SharedDataPointer
virtual const FeatureImageType * GetFeatureImage() const
ScalarValueType ComputeGlobalTerm(const ScalarValueType &imagePixel, const InputIndexType &inputIndex)
Compute the global term as a combination of the internal, external, overlapping and volume regulariza...
typename InputImageType::IndexType InputIndexType
virtual ScalarValueType ComputeExternalTerm(const FeaturePixelType &iValue, const FeatureIndexType &iIdx)=0
Compute the external term.
virtual ScalarValueType CurvatureSpeed(const NeighborhoodType &, const FloatOffsetType &, GlobalDataStruct *=0) const
Curvature speed can be used to spatially modify the effects of curvature . The default implementation...
void SetLambda2(const ScalarValueType &lambda2)
void SetVolumeMatchingWeight(const ScalarValueType &tau)
typename FeatureImageType::ConstPointer FeatureImageConstPointer
virtual VectorType AdvectionField(const NeighborhoodType &, const FloatOffsetType &, GlobalDataStruct *=0) const
PixelType ComputeUpdate(const NeighborhoodType &neighborhood, void *globalData, const FloatOffsetType &=FloatOffsetType(0.0)) override
FixedArray< ScalarValueType, Self::ImageDimension > VectorType
void SetLambda1(const ScalarValueType &lambda1)
virtual ScalarValueType ComputeCurvature(const NeighborhoodType &, const FloatOffsetType &, GlobalDataStruct *gd)
void UpdateSharedData(bool forceUpdate)
void SetReinitializationSmoothingWeight(const ScalarValueType c)
void SetAdvectionWeight(const ScalarValueType &iA)
typename HeavisideFunctionType::ConstPointer HeavisideFunctionConstPointer
virtual void Initialize(const RadiusType &r)
typename InputImageType::IndexValueType InputIndexValueType
virtual void ComputeParameters()=0
Compute Parameters for the inner and outer parts.
void SetVolume(const ScalarValueType &volume)
FiniteDifferenceFunction< TInput > Superclass
void SetAreaWeight(const ScalarValueType &nu)
static VectorType InitializeZeroVectorConstant()
virtual void SetCurvatureWeight(const ScalarValueType c)
typename InputImageType::PointType InputPointType
virtual void UpdateSharedDataParameters()=0
Update and save the inner and outer parameters in the shared data structure.
void SetDomainFunction(const HeavisideFunctionType *f)
typename FeatureImageType::OffsetType FeatureOffsetType
virtual ScalarValueType ComputeOverlapParameters(const FeatureIndexType &featIndex, ScalarValueType &pr)=0
Compute the overlap term.
void ComputeHessian(const NeighborhoodType &it, GlobalDataStruct *globalData)
Compute Hessian Matrix.
ScalarValueType ComputeLaplacian(GlobalDataStruct *gd)
Compute the laplacian term.
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
long OffsetValueType
Definition itkIntTypes.h:97
vnl_matrix_fixed< ScalarValueType, Self::ImageDimension, Self::ImageDimension > m_dxy