Loading [MathJax]/jax/input/TeX/config.js
ITK 6.0.0
Insight Toolkit
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
itkImageAlgorithm.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 itkImageAlgorithm_h
19#define itkImageAlgorithm_h
20
22
23#include <type_traits>
24
25namespace itk
26{
27
28template <typename TPixelType, unsigned int VImageDimension>
29class VectorImage;
30
31
43{
44
45 using TrueType = std::true_type;
46 using FalseType = std::false_type;
47
69 template <typename InputImageType, typename OutputImageType>
70 static void
71 Copy(const InputImageType * inImage,
72 OutputImageType * outImage,
73 const typename InputImageType::RegionType & inRegion,
74 const typename OutputImageType::RegionType & outRegion)
75 {
76 ImageAlgorithm::DispatchedCopy(inImage, outImage, inRegion, outRegion);
77 }
78
80 template <typename TPixel1, typename TPixel2, unsigned int VImageDimension>
81 static void
84 const typename Image<TPixel1, VImageDimension>::RegionType & inRegion,
85 const typename Image<TPixel2, VImageDimension>::RegionType & outRegion)
86 {
87 using _ImageType1 = Image<TPixel1, VImageDimension>;
88 using _ImageType2 = Image<TPixel2, VImageDimension>;
90 inImage,
91 outImage,
92 inRegion,
93 outRegion,
94 std::is_convertible<typename _ImageType1::PixelType, typename _ImageType2::PixelType>());
95 }
96
97 template <typename TPixel1, typename TPixel2, unsigned int VImageDimension>
98 static void
99 Copy(const VectorImage<TPixel1, VImageDimension> * inImage,
100 VectorImage<TPixel2, VImageDimension> * outImage,
102 const typename VectorImage<TPixel2, VImageDimension>::RegionType & outRegion)
103 {
104 using _ImageType1 = VectorImage<TPixel1, VImageDimension>;
105 using _ImageType2 = VectorImage<TPixel2, VImageDimension>;
107 inImage,
108 outImage,
109 inRegion,
110 outRegion,
111 std::is_convertible<typename _ImageType1::PixelType, typename _ImageType2::PixelType>());
112 }
113
115
122 template <typename InputImageType, typename OutputImageType>
123 static typename OutputImageType::RegionType
124 EnlargeRegionOverBox(const typename InputImageType::RegionType & inputRegion,
125 const InputImageType * inputImage,
126 const OutputImageType * outputImage);
127
128 template <typename InputImageType, typename OutputImageType, typename TransformType>
129 static typename OutputImageType::RegionType
130 EnlargeRegionOverBox(const typename InputImageType::RegionType & inputRegion,
131 const InputImageType * inputImage,
132 const OutputImageType * outputImage,
133 const TransformType * transform);
134
135private:
140 template <typename InputImageType, typename OutputImageType>
141 static void
142 DispatchedCopy(const InputImageType * inImage,
143 OutputImageType * outImage,
144 const typename InputImageType::RegionType & inRegion,
145 const typename OutputImageType::RegionType & outRegion,
146 TrueType isSpecialized);
147
149 template <typename InputImageType, typename OutputImageType>
150 static void
151 DispatchedCopy(const InputImageType * inImage,
152 OutputImageType * outImage,
153 const typename InputImageType::RegionType & inRegion,
154 const typename OutputImageType::RegionType & outRegion,
155 FalseType isSpecialized = FalseType());
156
157
161 template <typename TImageType>
163 {
164 static size_t
165 Get(const TImageType *)
166 {
167 return 1;
168 }
169 };
170
172 template <typename TPixelType, unsigned int VImageDimension>
173 struct PixelSize<VectorImage<TPixelType, VImageDimension>>
174 {
176 static size_t
177 Get(const ImageType * i)
178 {
179 const size_t vectorLength = ImageType::AccessorFunctorType::GetVectorLength(i);
180 return vectorLength;
181 }
182 };
184
186 template <typename TInputType, typename TOutputType>
188 {
189 TOutputType
190 operator()(const TInputType i)
191 {
192 return static_cast<TOutputType>(i);
193 }
194 };
195
197 template <typename TType>
198 static TType *
199 CopyHelper(const TType * first, const TType * last, TType * result)
200 {
201 // Note: On some MS compilers the following may generate a
202 // warning. Please include itkMacro.h before <algorithm> or
203 // another stl header to avoid.
204 return std::copy(first, last, result);
205 }
206
208 template <typename TInputType, typename TOutputType>
209 static TOutputType *
210 CopyHelper(const TInputType * first, const TInputType * last, TOutputType * result)
211 {
212 return std::transform(first, last, result, StaticCast<TInputType, TOutputType>());
213 }
215};
216} // end namespace itk
217
218
219#ifndef ITK_MANUAL_INSTANTIATION
220# include "itkImageAlgorithm.hxx"
221#endif
222
223
224#endif // itkImageAlgorithm_h
Templated n-dimensional image class.
Definition itkImage.h:89
ImageRegion< VImageDimension > RegionType
Templated n-dimensional vector image class.
ImageRegion< VImageDimension > RegionType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
static vcl_size_t Get(const TImageType *)
TOutputType operator()(const TInputType i)
A container of static functions which can operate on Images with Iterators.
std::false_type FalseType
static void DispatchedCopy(const InputImageType *inImage, OutputImageType *outImage, const typename InputImageType::RegionType &inRegion, const typename OutputImageType::RegionType &outRegion, FalseType isSpecialized=FalseType())
static void DispatchedCopy(const InputImageType *inImage, OutputImageType *outImage, const typename InputImageType::RegionType &inRegion, const typename OutputImageType::RegionType &outRegion, TrueType isSpecialized)
static OutputImageType::RegionType EnlargeRegionOverBox(const typename InputImageType::RegionType &inputRegion, const InputImageType *inputImage, const OutputImageType *outputImage)
Sets the output region to the smallest region of the output image that fully contains the physical sp...
static OutputImageType::RegionType EnlargeRegionOverBox(const typename InputImageType::RegionType &inputRegion, const InputImageType *inputImage, const OutputImageType *outputImage, const TransformType *transform)
static void Copy(const InputImageType *inImage, OutputImageType *outImage, const typename InputImageType::RegionType &inRegion, const typename OutputImageType::RegionType &outRegion)
This generic function copies a region from one image to another. It may perform optimizations on the ...
static TType * CopyHelper(const TType *first, const TType *last, TType *result)
std::true_type TrueType