ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLabelImageGaussianInterpolateImageFunction.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
19#ifndef itkLabelImageGaussianInterpolateImageFunction_h
20#define itkLabelImageGaussianInterpolateImageFunction_h
21
23
24namespace itk
25{
26
67template <typename TInputImage,
68 typename TCoordinate = double,
69 typename TPixelCompare = std::less<typename itk::NumericTraits<typename TInputImage::PixelType>::RealType>>
71 : public GaussianInterpolateImageFunction<TInputImage, TCoordinate>
72{
73public:
74 ITK_DISALLOW_COPY_AND_MOVE(LabelImageGaussianInterpolateImageFunction);
75
81 using InputPixelType = typename TInputImage::PixelType;
82
84 itkOverrideGetNameOfClassMacro(LabelImageGaussianInterpolateImageFunction);
85
87 itkNewMacro(Self);
88
90 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
91
93 using typename Superclass::OutputType;
94
96 using typename Superclass::InputImageType;
97
99 using typename Superclass::RealType;
100
102 using typename Superclass::IndexType;
103
105 using typename Superclass::ContinuousIndexType;
106
108 using typename Superclass::ArrayType;
109
114 EvaluateAtContinuousIndex(const ContinuousIndexType & cindex) const override
115 {
116 return this->EvaluateAtContinuousIndex(cindex, nullptr);
117 }
118
119protected:
122
123private:
129};
130
131} // end namespace itk
132
133#ifndef ITK_MANUAL_INSTANTIATION
134# include "itkLabelImageGaussianInterpolateImageFunction.hxx"
135#endif
136
137#endif
typename NumericTraits< typename TInputImage::PixelType >::RealType RealType
typename InputImageType::IndexType IndexType
ContinuousIndex< TCoordinate, Self::ImageDimension > ContinuousIndexType
TInputImage InputImageType
ContinuousIndex< double, Self::ImageDimension > ContinuousIndexType
GaussianInterpolateImageFunction< TInputImage, TCoordinate > Superclass
OutputType EvaluateAtContinuousIndex(const ContinuousIndexType &cindex) const override
OutputType EvaluateAtContinuousIndex(const ContinuousIndexType &, OutputType *) const override
~LabelImageGaussianInterpolateImageFunction() override=default
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....