ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkImageDuplicator.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 itkImageDuplicator_h
19#define itkImageDuplicator_h
20
21#include "itkObject.h"
22#include "itkImage.h"
23
24namespace itk
25{
53template <typename TInputImage>
54class ITK_TEMPLATE_EXPORT ImageDuplicator : public Object
55{
56public:
57 ITK_DISALLOW_COPY_AND_MOVE(ImageDuplicator);
58
64
66 itkNewMacro(Self);
67
69 itkOverrideGetNameOfClassMacro(ImageDuplicator);
70
72 using ImageType = TInputImage;
73 using ImagePointer = typename TInputImage::Pointer;
74 using ImageConstPointer = typename TInputImage::ConstPointer;
75 using PixelType = typename TInputImage::PixelType;
76 using IndexType = typename TInputImage::IndexType;
77
78 static constexpr unsigned int ImageDimension = ImageType::ImageDimension;
79
80 itkSetConstObjectMacro(InputImage, ImageType);
81
90 // NOTE: The m_DuplicateImage is only
91 // exposed via the Source generation interface
92 // by the GetOutput() method that mimics
93 // a process object.
94 virtual const ImageType *
95 GetOutput() const
96 {
97 return this->m_DuplicateImage.GetPointer();
98 }
99 virtual ImageType *
101 {
102 return this->m_DuplicateImage.GetPointer();
103 }
104
105#if !defined(ITK_LEGACY_REMOVE)
106 // This interface was exposed in ITKv4 when the itkGetModifiableObjectMacro was used
107 virtual ImageType *
108 GetModifiableOutput()
109 {
110 return this->m_DuplicateImage.GetPointer();
111 }
112#endif
113
115 void
117
118protected:
119 ImageDuplicator() = default;
120 ~ImageDuplicator() override = default;
121 void
122 PrintSelf(std::ostream & os, Indent indent) const override;
123
124private:
128};
129} // end namespace itk
130
131#ifndef ITK_MANUAL_INSTANTIATION
132# include "itkImageDuplicator.hxx"
133#endif
134
135#endif /* itkImageDuplicator_h */
typename TInputImage::Pointer ImagePointer
SmartPointer< const Self > ConstPointer
virtual const ImageType * GetOutput() const
typename TInputImage::PixelType PixelType
ImageConstPointer m_InputImage
ImageDuplicator()=default
static constexpr unsigned int ImageDimension
virtual ImageType * GetOutput()
typename TInputImage::ConstPointer ImageConstPointer
ModifiedTimeType m_InternalImageTime
typename TInputImage::IndexType IndexType
~ImageDuplicator() override=default
void PrintSelf(std::ostream &os, Indent indent) const override
SmartPointer< Self > Pointer
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....
SizeValueType ModifiedTimeType