ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkGradientImageFilter.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 itkGradientImageFilter_h
19#define itkGradientImageFilter_h
20
22#include "itkCovariantVector.h"
25#include <memory> // For unique_ptr.
26
27namespace itk
28{
29
30
31template <typename TPixelType, unsigned int VImageDimension>
32class VectorImage;
33
34
63template <typename TInputImage,
64 typename TOperatorValueType = float,
65 typename TOutputValueType = float,
66 typename TOutputImageType =
68class ITK_TEMPLATE_EXPORT GradientImageFilter : public ImageToImageFilter<TInputImage, TOutputImageType>
69{
70public:
71 ITK_DISALLOW_COPY_AND_MOVE(GradientImageFilter);
72
74 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
75 static constexpr unsigned int OutputImageDimension = TOutputImageType::ImageDimension;
76
78 using InputImageType = TInputImage;
79 using InputImagePointer = typename InputImageType::Pointer;
80 using OutputImageType = TOutputImageType;
81 using OutputImagePointer = typename OutputImageType::Pointer;
82
88
90 itkNewMacro(Self);
91
93 itkOverrideGetNameOfClassMacro(GradientImageFilter);
94
96 using InputPixelType = typename InputImageType::PixelType;
97 using OperatorValueType = TOperatorValueType;
98 using OutputValueType = TOutputValueType;
99 using OutputPixelType = typename OutputImageType::PixelType;
101 using OutputImageRegionType = typename OutputImageType::RegionType;
102
109 void
111
118 itkSetMacro(UseImageSpacing, bool);
119 itkGetConstMacro(UseImageSpacing, bool);
120 itkBooleanMacro(UseImageSpacing);
122#if !defined(ITK_FUTURE_LEGACY_REMOVE)
126 void
127 SetUseImageSpacingOn()
128 {
129 this->SetUseImageSpacing(true);
130 }
131
135 void
136 SetUseImageSpacingOff()
137 {
138 this->SetUseImageSpacing(false);
139 }
140#endif
141
143 void
145
147 itkConceptMacro(OutputHasNumericTraitsCheck, (Concept::HasNumericTraits<OutputValueType>));
148
160 itkSetMacro(UseImageDirection, bool);
161 itkGetConstMacro(UseImageDirection, bool);
162 itkBooleanMacro(UseImageDirection);
164protected:
166 ~GradientImageFilter() override = default;
167 void
168 PrintSelf(std::ostream & os, Indent indent) const override;
169
180 void
181 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
182
183
184private:
185 void
187
188 // An overloaded method which may transform the gradient to a
189 // physical vector and converts to the correct output pixel type.
190 template <typename TValue>
191 void
193 {
194 if (this->m_UseImageDirection)
195 {
196 CovariantVectorType physicalGradient;
197 it.GetImage()->TransformLocalVectorToPhysicalVector(gradient, physicalGradient);
198 it.Set(OutputPixelType(physicalGradient.GetDataPointer(), InputImageDimension, false));
199 }
200 else
201 {
202 it.Set(OutputPixelType(gradient.GetDataPointer(), InputImageDimension, false));
203 }
204 }
205
206 template <typename T>
207 void
209 {
210 // This uses the more efficient set by reference method
211 if (this->m_UseImageDirection)
212 {
213 it.GetImage()->TransformLocalVectorToPhysicalVector(gradient, it.Value());
214 }
215 else
216 {
217 it.Value() = gradient;
218 }
219 }
220
221
222 bool m_UseImageSpacing{ true };
223
224 // flag to take or not the image direction into account
225 // when computing the derivatives.
227
228 // allow setting the the m_BoundaryCondition
229 std::unique_ptr<ImageBoundaryCondition<TInputImage, TInputImage>> m_BoundaryCondition{
230 std::make_unique<ZeroFluxNeumannBoundaryCondition<TInputImage>>()
231 };
232};
233} // end namespace itk
234
235#ifndef ITK_MANUAL_INSTANTIATION
236# include "itkGradientImageFilter.hxx"
237#endif
238
239#endif
A templated class holding a n-Dimensional covariant vector.
ValueType * GetDataPointer()
TOperatorValueType OperatorValueType
typename OutputImageType::Pointer OutputImagePointer
void GenerateInputRequestedRegion() override
std::unique_ptr< ImageBoundaryCondition< TInputImage, TInputImage > > m_BoundaryCondition
void OverrideBoundaryCondition(ImageBoundaryCondition< TInputImage > *boundaryCondition)
typename OutputImageType::RegionType OutputImageRegionType
typename OutputImageType::PixelType OutputPixelType
void PrintSelf(std::ostream &os, Indent indent) const override
CovariantVector< OutputValueType, Self::OutputImageDimension > CovariantVectorType
virtual void SetUseImageSpacing(bool _arg)
ImageToImageFilter< InputImageType, OutputImageType > Superclass
SmartPointer< const Self > ConstPointer
void SetOutputPixel(ImageRegionIterator< T > &it, CovariantVectorType &gradient)
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
void GenerateOutputInformation() override
typename InputImageType::PixelType InputPixelType
~GradientImageFilter() override=default
static constexpr unsigned int InputImageDimension
void SetOutputPixel(ImageRegionIterator< VectorImage< TValue, OutputImageDimension > > &it, CovariantVectorType &gradient)
static constexpr unsigned int OutputImageDimension
typename InputImageType::Pointer InputImagePointer
A virtual base object that defines an interface to a class of boundary condition objects for use by n...
const ImageType * GetImage() const
A multi-dimensional iterator templated over image type that walks a region of pixels.
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
Templated n-dimensional vector image class.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....