ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkExtractImageFilter.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 itkExtractImageFilter_h
19#define itkExtractImageFilter_h
20
22#include "itkSmartPointer.h"
24#include "ITKCommonExport.h"
25
26namespace itk
27{
28
50
52extern ITKCommon_EXPORT std::ostream &
54
55
117
118template <typename TInputImage, typename TOutputImage>
119class ITK_TEMPLATE_EXPORT ExtractImageFilter : public InPlaceImageFilter<TInputImage, TOutputImage>
120{
121public:
122 ITK_DISALLOW_COPY_AND_MOVE(ExtractImageFilter);
123
129
131 itkNewMacro(Self);
132
134 itkOverrideGetNameOfClassMacro(ExtractImageFilter);
135
137 using InputImageType = TInputImage;
138 using OutputImageType = TOutputImage;
139
141 using OutputImageRegionType = typename TOutputImage::RegionType;
142 using InputImageRegionType = typename TInputImage::RegionType;
143
145 using OutputImagePixelType = typename TOutputImage::PixelType;
146 using InputImagePixelType = typename TInputImage::PixelType;
147
149 using OutputImageIndexType = typename TOutputImage::IndexType;
150 using InputImageIndexType = typename TInputImage::IndexType;
151 using OutputImageSizeType = typename TOutputImage::SizeType;
152 using InputImageSizeType = typename TInputImage::SizeType;
153
156#if !defined(ITK_LEGACY_REMOVE)
157 using DIRECTIONCOLLAPSESTRATEGY = DirectionCollapseStrategyEnum;
158 // We need to expose the enum values at the class level
159 // for backwards compatibility
160 static constexpr DIRECTIONCOLLAPSESTRATEGY DIRECTIONCOLLAPSETOUNKOWN =
161 DIRECTIONCOLLAPSESTRATEGY::DIRECTIONCOLLAPSETOUNKOWN;
162 static constexpr DIRECTIONCOLLAPSESTRATEGY DIRECTIONCOLLAPSETOIDENTITY =
163 DIRECTIONCOLLAPSESTRATEGY::DIRECTIONCOLLAPSETOIDENTITY;
164 static constexpr DIRECTIONCOLLAPSESTRATEGY DIRECTIONCOLLAPSETOSUBMATRIX =
165 DIRECTIONCOLLAPSESTRATEGY::DIRECTIONCOLLAPSETOSUBMATRIX;
166 static constexpr DIRECTIONCOLLAPSESTRATEGY DIRECTIONCOLLAPSETOGUESS =
167 DIRECTIONCOLLAPSESTRATEGY::DIRECTIONCOLLAPSETOGUESS;
168#endif
169
194 void
196 {
197 switch (choosenStrategy)
198 {
199 case DirectionCollapseStrategyEnum::DIRECTIONCOLLAPSETOGUESS:
200 case DirectionCollapseStrategyEnum::DIRECTIONCOLLAPSETOIDENTITY:
201 case DirectionCollapseStrategyEnum::DIRECTIONCOLLAPSETOSUBMATRIX:
202 break;
203 case DirectionCollapseStrategyEnum::DIRECTIONCOLLAPSETOUNKOWN:
204 default:
205 itkExceptionMacro("Invalid Strategy Chosen for itk::ExtractImageFilter");
206 }
207
208 this->m_DirectionCollapseStrategy = choosenStrategy;
209 this->Modified();
210 }
211
216
220 DirectionCollapseStrategyEnum
222 {
223 return this->m_DirectionCollapseStrategy;
224 }
225
227 void
229 {
230 this->SetDirectionCollapseToStrategy(DirectionCollapseStrategyEnum::DIRECTIONCOLLAPSETOGUESS);
231 }
232
234 void
236 {
237 this->SetDirectionCollapseToStrategy(DirectionCollapseStrategyEnum::DIRECTIONCOLLAPSETOIDENTITY);
238 }
239
241 void
243 {
244 this->SetDirectionCollapseToStrategy(DirectionCollapseStrategyEnum::DIRECTIONCOLLAPSETOSUBMATRIX);
245 }
246
247
249 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
250 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
251
254
261 void
263 itkGetConstMacro(ExtractionRegion, InputImageRegionType);
266
267protected:
269 ~ExtractImageFilter() override = default;
270 void
271 PrintSelf(std::ostream & os, Indent indent) const override;
272
281 void
283
294 void
296 const OutputImageRegionType & srcRegion) override;
297
307 void
308 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
309
312 void
313 GenerateData() override;
314
316
318
319private:
320 DirectionCollapseStrategyEnum m_DirectionCollapseStrategy{ DirectionCollapseStrategyEnum::DIRECTIONCOLLAPSETOUNKOWN };
321};
322
323} // end namespace itk
324
325#ifndef ITK_MANUAL_INSTANTIATION
326# include "itkExtractImageFilter.hxx"
327#endif
328
329#endif
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
void GenerateData() override
void CallCopyOutputRegionToInputRegion(InputImageRegionType &destRegion, const OutputImageRegionType &srcRegion) override
void SetDirectionCollapseToStrategy(const DirectionCollapseStrategyEnum choosenStrategy)
void PrintSelf(std::ostream &os, Indent indent) const override
DirectionCollapseStrategyEnum m_DirectionCollapseStrategy
typename TOutputImage::IndexType OutputImageIndexType
typename TInputImage::IndexType InputImageIndexType
typename TOutputImage::PixelType OutputImagePixelType
static constexpr unsigned int InputImageDimension
typename TOutputImage::SizeType OutputImageSizeType
void GenerateOutputInformation() override
static constexpr unsigned int OutputImageDimension
typename TInputImage::SizeType InputImageSizeType
ImageToImageFilterDetail::ExtractImageFilterRegionCopier< Self::InputImageDimension, Self::OutputImageDimension > ExtractImageFilterRegionCopierType
typename TOutputImage::RegionType OutputImageRegionType
ExtractImageFilterEnums::DirectionCollapseStrategy DirectionCollapseStrategyEnum
DirectionCollapseStrategyEnum GetDirectionCollapseToStrategy() const
void SetExtractionRegion(InputImageRegionType extractRegion)
typename TInputImage::PixelType InputImagePixelType
OutputImageRegionType m_OutputImageRegion
typename TInputImage::RegionType InputImageRegionType
InPlaceImageFilter< TInputImage, TOutputImage > Superclass
~ExtractImageFilter() override=default
SmartPointer< const Self > ConstPointer
InputImageRegionType m_ExtractionRegion
A special variation of ImageRegionCopier for when the output image has fewer dimensions than the inpu...
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....
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)