ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkAreaOpeningImageFilter.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 itkAreaOpeningImageFilter_h
19#define itkAreaOpeningImageFilter_h
20
22#include <functional>
23
24namespace itk
25{
47template <typename TInputImage,
48 typename TOutputImage,
49 typename TAttribute = typename TInputImage::SpacingType::ValueType>
51 : public AttributeMorphologyBaseImageFilter<TInputImage,
52 TOutputImage,
53 TAttribute,
54 std::greater<typename TInputImage::PixelType>>
55
56{
57public:
58 ITK_DISALLOW_COPY_AND_MOVE(AreaOpeningImageFilter);
59
62 TOutputImage,
63 TAttribute,
64 std::greater<typename TInputImage::PixelType>>;
65
68
73 using OutputPixelType = typename TOutputImage::PixelType;
74 using OutputInternalPixelType = typename TOutputImage::InternalPixelType;
75 using InputPixelType = typename TInputImage::PixelType;
76 using InputInternalPixelType = typename TInputImage::InternalPixelType;
77 using IndexType = typename TInputImage::IndexType;
78 using OffsetType = typename TInputImage::OffsetType;
79 using SizeType = typename TInputImage::SizeType;
80 using AttributeType = TAttribute;
81
82 static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
83
85 itkNewMacro(Self);
86
88 itkOverrideGetNameOfClassMacro(AreaOpeningImageFilter);
89
93 itkSetMacro(UseImageSpacing, bool);
94 itkGetConstReferenceMacro(UseImageSpacing, bool);
95 itkBooleanMacro(UseImageSpacing);
96
97protected:
99
100 ~AreaOpeningImageFilter() override = default;
101
102 void
103 GenerateData() override
104 {
105 this->m_AttributeValuePerPixel = 1;
107 {
108 const auto & spacing = this->GetInput()->GetSpacing();
109
110 // compute pixel size
111 double psize = 1.0;
112 for (unsigned int i = 0; i < ImageDimension; ++i)
113 {
114 psize *= spacing[i];
115 }
116 this->m_AttributeValuePerPixel = static_cast<AttributeType>(psize);
117 // std::cout << "m_AttributeValuePerPixel: " <<
118 // this->m_AttributeValuePerPixel << std::endl;
119 // and call superclass implementation of GenerateData()
120 }
122 }
123
124 void
125 PrintSelf(std::ostream & os, Indent indent) const override
126 {
127 Superclass::PrintSelf(os, indent);
128 itkPrintSelfBooleanMacro(UseImageSpacing);
129 }
130
131private:
133};
134} // namespace itk
135#endif
typename TInputImage::InternalPixelType InputInternalPixelType
typename TInputImage::IndexType IndexType
typename TInputImage::OffsetType OffsetType
SmartPointer< const Self > ConstPointer
typename TInputImage::PixelType InputPixelType
static constexpr unsigned int ImageDimension
~AreaOpeningImageFilter() override=default
typename TInputImage::SizeType SizeType
AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, std::greater< typename TInputImage::PixelType > > Superclass
typename TOutputImage::InternalPixelType OutputInternalPixelType
typename TOutputImage::PixelType OutputPixelType
void PrintSelf(std::ostream &os, Indent indent) const override
const InputImageType * GetInput() const
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....