ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkShrinkImageFilter.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 *
20 * Portions of this file are subject to the VTK Toolkit Version 3 copyright.
21 *
22 * Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
23 *
24 * For complete copyright, license and disclaimer of warranty information
25 * please refer to the NOTICE file at the top of the ITK source tree.
26 *
27 *=========================================================================*/
28#ifndef itkShrinkImageFilter_h
29#define itkShrinkImageFilter_h
30
32
33namespace itk
34{
67template <typename TInputImage, typename TOutputImage>
68class ITK_TEMPLATE_EXPORT ShrinkImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
69{
70public:
71 ITK_DISALLOW_COPY_AND_MOVE(ShrinkImageFilter);
72
78
80 itkNewMacro(Self);
81
83 itkOverrideGetNameOfClassMacro(ShrinkImageFilter);
84
86 using OutputImageType = TOutputImage;
87 using InputImageType = TInputImage;
88 using OutputImagePointer = typename OutputImageType::Pointer;
89 using InputImagePointer = typename InputImageType::Pointer;
90 using InputImageConstPointer = typename InputImageType::ConstPointer;
91
92 using OutputIndexType = typename TOutputImage::IndexType;
93 using InputIndexType = typename TInputImage::IndexType;
94 using OutputOffsetType = typename TOutputImage::OffsetType;
95
97 using OutputImageRegionType = typename TOutputImage::RegionType;
98
100 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
101 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
102
104
108 itkSetMacro(ShrinkFactors, ShrinkFactorsType);
109 void
110 SetShrinkFactors(unsigned int factor);
111 void
112 SetShrinkFactor(unsigned int i, unsigned int factor);
115 itkGetConstReferenceMacro(ShrinkFactors, ShrinkFactorsType);
116
124 void
126
132 void
134
135 itkConceptMacro(InputConvertibleToOutputCheck,
138
139protected:
141 ~ShrinkImageFilter() override = default;
142 void
143 PrintSelf(std::ostream & os, Indent indent) const override;
144
155 void
156 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
157
158
159private:
161};
162} // end namespace itk
163
164#ifndef ITK_MANUAL_INSTANTIATION
165# include "itkShrinkImageFilter.hxx"
166#endif
167
168#endif
Simulate a standard C array with copy semantics.
Control indentation during Print() invocation.
Definition itkIndent.h:50
void GenerateInputRequestedRegion() override
void SetShrinkFactor(unsigned int i, unsigned int factor)
ImageToImageFilter< TInputImage, TOutputImage > Superclass
typename TOutputImage::IndexType OutputIndexType
typename TOutputImage::OffsetType OutputOffsetType
typename InputImageType::ConstPointer InputImageConstPointer
SmartPointer< const Self > ConstPointer
typename InputImageType::Pointer InputImagePointer
~ShrinkImageFilter() override=default
typename TOutputImage::RegionType OutputImageRegionType
void SetShrinkFactors(unsigned int factor)
SmartPointer< Self > Pointer
void GenerateOutputInformation() override
FixedArray< unsigned int, ImageDimension > ShrinkFactorsType
void PrintSelf(std::ostream &os, Indent indent) const override
typename TInputImage::IndexType InputIndexType
typename OutputImageType::Pointer OutputImagePointer
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....