ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBinShrinkImageFilter.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 itkBinShrinkImageFilter_h
19#define itkBinShrinkImageFilter_h
20
22#include <type_traits>
23
24namespace itk
25{
26
57template <typename TInputImage, typename TOutputImage>
58class ITK_TEMPLATE_EXPORT BinShrinkImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
59{
60public:
61 ITK_DISALLOW_COPY_AND_MOVE(BinShrinkImageFilter);
62
68
70 itkNewMacro(Self);
71
73 itkOverrideGetNameOfClassMacro(BinShrinkImageFilter);
74
76 using OutputImageType = TOutputImage;
77 using InputImageType = TInputImage;
78 using OutputImagePointer = typename OutputImageType::Pointer;
79 using InputImagePointer = typename InputImageType::Pointer;
80 using InputImageConstPointer = typename InputImageType::ConstPointer;
81
82 using OutputOffsetType = typename TOutputImage::OffsetType;
83 using OutputIndexType = typename TOutputImage::IndexType;
84 using InputIndexType = typename TInputImage::IndexType;
85
87 using OutputImageRegionType = typename TOutputImage::RegionType;
88
90 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
91 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
92
94
98 itkSetMacro(ShrinkFactors, ShrinkFactorsType);
99 void
100 SetShrinkFactors(unsigned int factor);
101 void
102 SetShrinkFactor(unsigned int i, unsigned int factor);
105 itkGetConstReferenceMacro(ShrinkFactors, ShrinkFactorsType);
106
107 void
109
115 void
117
118
119 itkConceptMacro(InputConvertibleToOutputCheck,
122
123protected:
125 void
126 PrintSelf(std::ostream & os, Indent indent) const override;
127
128 void
129 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
130
131private:
133
135 template <class TOutputType, class TInputType>
136 std::enable_if_t<std::numeric_limits<TOutputType>::is_integer, TOutputType>
137 RoundIfInteger(TInputType input)
138 {
139 return Math::Round<TOutputType>(input);
140 }
141
142 // For Non-fundamental types numeric_limits is not specialized, and
143 // is_integer defaults to false.
144 template <class TOutputType, class TInputType>
145 std::enable_if_t<!std::numeric_limits<TOutputType>::is_integer, TOutputType>
146 RoundIfInteger(const TInputType & input, ...)
147 {
148 return static_cast<TOutputType>(input);
149 }
150};
151
152} // end namespace itk
153
154#ifndef ITK_MANUAL_INSTANTIATION
155# include "itkBinShrinkImageFilter.hxx"
156#endif
157
158#endif
void GenerateOutputInformation() override
typename InputImageType::Pointer InputImagePointer
void SetShrinkFactors(unsigned int factor)
typename TInputImage::IndexType InputIndexType
static constexpr unsigned int OutputImageDimension
typename TOutputImage::OffsetType OutputOffsetType
typename TOutputImage::RegionType OutputImageRegionType
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
typename InputImageType::ConstPointer InputImageConstPointer
void PrintSelf(std::ostream &os, Indent indent) const override
std::enable_if_t< std::numeric_limits< TOutputType >::is_integer, TOutputType > RoundIfInteger(TInputType input)
void GenerateInputRequestedRegion() override
typename OutputImageType::Pointer OutputImagePointer
static constexpr unsigned int ImageDimension
typename TOutputImage::IndexType OutputIndexType
void SetShrinkFactor(unsigned int i, unsigned int factor)
ImageToImageFilter< TInputImage, TOutputImage > Superclass
std::enable_if_t<!std::numeric_limits< TOutputType >::is_integer, TOutputType > RoundIfInteger(const TInputType &input,...)
FixedArray< unsigned int, ImageDimension > ShrinkFactorsType
SmartPointer< const Self > ConstPointer
Simulate a standard C array with copy semantics.
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
TInput TInput TReturn Round(TInput x)
Definition itkMath.h:178
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....