ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFastMarchingUpwindGradientImageFilter.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 itkFastMarchingUpwindGradientImageFilter_h
19#define itkFastMarchingUpwindGradientImageFilter_h
20
22#include "itkImage.h"
23
24namespace itk
25{
26
48
49extern ITKFastMarching_EXPORT std::ostream &
51
52
87template <typename TLevelSet, typename TSpeedImage = Image<float, TLevelSet::ImageDimension>>
88class ITK_TEMPLATE_EXPORT FastMarchingUpwindGradientImageFilter : public FastMarchingImageFilter<TLevelSet, TSpeedImage>
89{
90public:
91 ITK_DISALLOW_COPY_AND_MOVE(FastMarchingUpwindGradientImageFilter);
92
98
100 itkNewMacro(Self);
101
103 itkOverrideGetNameOfClassMacro(FastMarchingUpwindGradientImageFilter);
104
106 using typename Superclass::LevelSetType;
107 using typename Superclass::SpeedImageType;
108 using typename Superclass::LevelSetImageType;
109 using typename Superclass::LevelSetPointer;
111 using typename Superclass::LabelImageType;
112 using typename Superclass::PixelType;
113 using typename Superclass::AxisNodeType;
114 using typename Superclass::NodeType;
115 using typename Superclass::NodeContainer;
117
118 using typename Superclass::IndexType;
119 using typename Superclass::OutputSpacingType;
120 using typename Superclass::LevelSetIndexType;
121
123
125 static constexpr unsigned int SetDimension = Superclass::SetDimension;
126
129#if !defined(ITK_LEGACY_REMOVE)
130 // We need to expose the enum values at the class level
131 // for backwards compatibility
132 static constexpr TargetConditionEnum NoTargets = TargetConditionEnum::NoTargets;
133 static constexpr TargetConditionEnum OneTarget = TargetConditionEnum::OneTarget;
134 static constexpr TargetConditionEnum SomeTargets = TargetConditionEnum::SomeTargets;
135 static constexpr TargetConditionEnum AllTargets = TargetConditionEnum::AllTargets;
136#endif
137
141 void
143 {
144 m_TargetPoints = points;
145 this->Modified();
146 }
147
149 NodeContainerPointer
151 {
152 return m_TargetPoints;
153 }
154
156 NodeContainerPointer
161
164
167
170
174 {
175 return m_GradientImage;
176 }
177
180 itkSetMacro(GenerateGradientImage, bool);
181
184 itkGetConstReferenceMacro(GenerateGradientImage, bool);
185 itkBooleanMacro(GenerateGradientImage);
190 itkSetMacro(TargetOffset, double);
191
193 itkGetConstReferenceMacro(TargetOffset, double);
194
199 itkSetMacro(TargetReachedMode, TargetConditionEnum);
200 itkGetConstReferenceMacro(TargetReachedMode, TargetConditionEnum);
201 void
203 {
204 this->SetTargetReachedMode(TargetConditionEnum::NoTargets);
206 }
207 void
209 {
210 this->SetTargetReachedMode(TargetConditionEnum::OneTarget);
212 }
213 void
215 {
216 this->SetTargetReachedMode(TargetConditionEnum::SomeTargets);
217 m_NumberOfTargets = numberOfTargets;
218 }
219
220 void
222 {
223 this->SetTargetReachedMode(TargetConditionEnum::AllTargets);
224 // m_NumberOfTargets is not used for this case
225 }
226
228 itkGetConstReferenceMacro(NumberOfTargets, SizeValueType);
229
234 itkGetConstReferenceMacro(TargetValue, double);
235
236 itkConceptMacro(LevelSetDoubleDivisionOperatorsCheck,
238 itkConceptMacro(LevelSetDoubleDivisionAndAssignOperatorsCheck,
240
241protected:
244 void
245 PrintSelf(std::ostream & os, Indent indent) const override;
246
247 void
248 VerifyPreconditions() const override;
249
250 void
252
253 void
254 GenerateData() override;
255
256 void
257 UpdateNeighbors(const IndexType & index, const SpeedImageType *, LevelSetImageType *) override;
258
259 virtual void
261 const LevelSetImageType * output,
262 const LabelImageType * labelImage,
263 GradientImageType * gradientImage);
264
268 bool
270 {
271 if (!m_TargetPoints || m_TargetPoints->Size() == 0)
272 {
273 return false;
274 }
275
276 return true;
277 }
278
286 void
287 VerifyTargetReachedModeConditions(unsigned int targetModeMinPoints = 1) const
288 {
289 const bool targetPointsExist = this->IsTargetPointsExistenceConditionSatisfied();
290
291 if (!targetPointsExist)
292 {
293 itkExceptionMacro("No target point set. Cannot set the target reached mode.");
294 }
295 else
296 {
297 const SizeValueType availableNumberOfTargets = m_TargetPoints->Size();
298 if (targetModeMinPoints > availableNumberOfTargets)
299 {
300 itkExceptionMacro("Not enough target points: Available: " << availableNumberOfTargets
301 << "; Requested: " << targetModeMinPoints);
302 }
303 }
304 }
305
306
307private:
310
312
314
316
318
320
322};
323} // namespace itk
324
325#ifndef ITK_MANUAL_INSTANTIATION
326# include "itkFastMarchingUpwindGradientImageFilter.hxx"
327#endif
328
329#endif
A templated class holding a n-Dimensional covariant vector.
typename LevelSetType::NodeContainer NodeContainer
typename SpeedImageType::ConstPointer SpeedImageConstPointer
typename LevelSetImageType::SpacingType OutputSpacingType
typename LevelSetType::NodeType NodeType
typename LevelSetType::LevelSetPointer LevelSetPointer
Image< LabelEnum, Self::SetDimension > LabelImageType
typename LevelSetType::NodeContainerPointer NodeContainerPointer
static constexpr unsigned int SetDimension
typename LevelSetImageType::IndexType LevelSetIndexType
typename LevelSetType::LevelSetImageType LevelSetImageType
LevelSetTypeDefault< TLevelSet > LevelSetType
Index< Self::SetDimension > IndexType
typename LevelSetType::PixelType PixelType
enums for itk::FastMarchingUpwindGradientImageFilter
Image< GradientPixelType, Self::SetDimension > GradientImageType
void PrintSelf(std::ostream &os, Indent indent) const override
void VerifyPreconditions() const override
Verifies that the process object has been configured correctly, that all required inputs are set,...
CovariantVector< PixelType, Self::SetDimension > GradientPixelType
virtual void ComputeGradient(const IndexType &index, const LevelSetImageType *output, const LabelImageType *labelImage, GradientImageType *gradientImage)
~FastMarchingUpwindGradientImageFilter() override=default
void Initialize(LevelSetImageType *) override
FastMarchingUpwindGradientImageFilterEnums::TargetCondition TargetConditionEnum
void VerifyTargetReachedModeConditions(unsigned int targetModeMinPoints=1) const
void UpdateNeighbors(const IndexType &index, const SpeedImageType *, LevelSetImageType *) override
FastMarchingImageFilter< TLevelSet, TSpeedImage > Superclass
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void Modified() const
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)