ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkProjectionImageFilter.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 itkProjectionImageFilter_h
19#define itkProjectionImageFilter_h
20
22
23namespace itk
24{
55template <typename TInputImage, typename TOutputImage, typename TAccumulator>
56class ITK_TEMPLATE_EXPORT ProjectionImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
57{
58public:
59 ITK_DISALLOW_COPY_AND_MOVE(ProjectionImageFilter);
60
66
68 itkNewMacro(Self);
69
71 itkOverrideGetNameOfClassMacro(ProjectionImageFilter);
72
74 using InputImageType = TInputImage;
75 using InputImagePointer = typename InputImageType::Pointer;
76 using InputImageRegionType = typename InputImageType::RegionType;
77 using InputImagePixelType = typename InputImageType::PixelType;
78 using OutputImageType = TOutputImage;
79 using OutputImagePointer = typename OutputImageType::Pointer;
80 using OutputImageRegionType = typename OutputImageType::RegionType;
81 using OutputImagePixelType = typename OutputImageType::PixelType;
82
83 using AccumulatorType = TAccumulator;
84
86 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
87 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
88
91 itkConceptMacro(ImageDimensionCheck,
93
97 itkSetMacro(ProjectionDimension, unsigned int);
98 itkGetConstReferenceMacro(ProjectionDimension, unsigned int);
100protected:
102 ~ProjectionImageFilter() override = default;
103 void
104 PrintSelf(std::ostream & os, Indent indent) const override;
105
107 void
109
111 void
113
114 void
115 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
116
117
119
120private:
121 unsigned int m_ProjectionDimension{};
122};
123} // end namespace itk
124
125#ifndef ITK_MANUAL_INSTANTIATION
126# include "itkProjectionImageFilter.hxx"
127#endif
128
129#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
void GenerateOutputInformation() override
void GenerateInputRequestedRegion() override
void PrintSelf(std::ostream &os, Indent indent) const override
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
~ProjectionImageFilter() override=default
virtual AccumulatorType NewAccumulator(SizeValueType) const
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86