Loading [MathJax]/extensions/tex2jax.js
ITK 6.0.0
Insight Toolkit
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
itkImageRegion.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/*=========================================================================
19 *
20 * Portions of this file are subject to the VTK Toolkit Version 3 copyright.
21 *
22 * Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
23 *
24 * For complete copyright, license and disclaimer of warranty information
25 * please refer to the NOTICE file at the top of the ITK source tree.
26 *
27 *=========================================================================*/
28#ifndef itkImageRegion_h
29#define itkImageRegion_h
30
31#include "itkRegion.h"
32
33#include "itkSize.h"
34#include "itkContinuousIndex.h"
35#include "itkMath.h"
36#include <type_traits> // For conditional and integral_constant.
37#include <utility> // For tuple_element and tuple_size.
38
39// Macro added to each `ImageRegion` member function that overrides a virtual member function of `Region`, when legacy
40// support is enabled. Without legacy support, `ImageRegion` will no longer inherit from `Region`, so then those
41// `ImageRegion` member functions will no longer override.
42#ifdef ITK_LEGACY_REMOVE
43# define itkRegionOverrideMacro // nothing
44#else
45# define itkRegionOverrideMacro override
46#endif
47
48namespace itk
49{
50// Forward declaration of ImageBase so it can be declared a friend
51// (needed for PrintSelf mechanism)
52template <unsigned int VImageDimension>
53class ITK_TEMPLATE_EXPORT ImageBase;
54
79template <unsigned int VImageDimension>
80class ITK_TEMPLATE_EXPORT ImageRegion final
81#ifndef ITK_LEGACY_REMOVE
82 // This inheritance is only there when legacy support is enabled.
83 : public Region
84#endif
85{
86public:
89
90#ifndef ITK_LEGACY_REMOVE
91 using Superclass = Region;
92#endif
93
95 const char *
97 {
98 return "ImageRegion";
99 }
100
102 static constexpr unsigned int ImageDimension = VImageDimension;
103
106 static constexpr unsigned int SliceDimension = ImageDimension - (ImageDimension > 1);
107
109 static constexpr unsigned int
111 {
112 return ImageDimension;
113 }
114
119 using OffsetValueType = typename OffsetType::OffsetValueType;
122
126
129
133 {
134 return Region::RegionEnum::ITK_STRUCTURED_REGION;
135 }
136
138 void
139 Print(std::ostream & os, Indent indent = 0) const itkRegionOverrideMacro;
140
144 ImageRegion() noexcept = default;
145
149
152 ImageRegion(const Self &) noexcept = default;
153
157 ImageRegion(const IndexType & index, const SizeType & size) noexcept
158 : // Note: Use parentheses instead of curly braces to initialize data members,
159 // to avoid AppleClang 6.0.0.6000056 compile errors, "no viable conversion..."
160 m_Index(index)
161 , m_Size(size)
162 {}
163
168 ImageRegion(const SizeType & size) noexcept
169 : m_Size(size)
170 {
171 // Note: m_Index is initialized by its C++11 default member initializer.
172 }
173
176 Self &
177 operator=(const Self &) noexcept = default;
178
180 void
181 SetIndex(const IndexType & index)
182 {
183 m_Index = index;
184 }
185
188 const IndexType &
189 GetIndex() const
190 {
191 return m_Index;
192 }
193 IndexType &
195 {
196 return m_Index;
197 }
198
201 void
202 SetSize(const SizeType & size)
203 {
204 m_Size = size;
205 }
206
209 const SizeType &
210 GetSize() const
211 {
212 return m_Size;
213 }
214 SizeType &
216 {
217 return m_Size;
218 }
219
223 void
224 SetSize(unsigned int i, SizeValueType sze)
225 {
226 m_Size[i] = sze;
227 }
229 GetSize(unsigned int i) const
230 {
231 return m_Size[i];
232 }
233
237 void
238 SetIndex(unsigned int i, IndexValueType sze)
239 {
240 m_Index[i] = sze;
241 }
243 GetIndex(unsigned int i) const
244 {
245 return m_Index[i];
246 }
247
249 IndexType
251
253 void
255
257 void
259
261 bool
262 operator==(const Self & region) const noexcept
263 {
264 return (m_Index == region.m_Index) && (m_Size == region.m_Size);
265 }
266
268
270 bool
271 IsInside(const IndexType & index) const
272 {
273 for (unsigned int i = 0; i < ImageDimension; ++i)
274 {
275 if (index[i] < m_Index[i] || index[i] >= m_Index[i] + static_cast<IndexValueType>(m_Size[i]))
276 {
277 return false;
278 }
279 }
280 return true;
281 }
282
287 template <typename TCoordinate>
288 bool
290 {
291 constexpr TCoordinate half = 0.5;
292 for (unsigned int i = 0; i < ImageDimension; ++i)
293 {
294 // Use negation of tests so that index[i]==NaN leads to returning false.
295 if (!(index[i] >= m_Index[i] - half && index[i] <= (m_Index[i] + static_cast<IndexValueType>(m_Size[i])) - half))
296 {
297 return false;
298 }
299 }
300 return true;
301 }
302
307 bool
308 IsInside(const Self & otherRegion) const
309 {
310 const auto & otherIndex = otherRegion.m_Index;
311 const auto & otherSize = otherRegion.m_Size;
312
313 for (unsigned int i = 0; i < ImageDimension; ++i)
314 {
315 if (otherIndex[i] < m_Index[i] || otherSize[i] == 0 ||
316 otherIndex[i] + static_cast<IndexValueType>(otherSize[i]) >
317 m_Index[i] + static_cast<IndexValueType>(m_Size[i]))
318 {
319 return false;
320 }
321 }
322 return true;
323 }
324
329
333 void
335
336 void
338
339 void
340 PadByRadius(const SizeType & radius);
341
346 bool
348
349 bool
351
352 bool
353 ShrinkByRadius(const SizeType & radius);
354
359 bool
360 Crop(const Self & region);
361
366 Slice(const unsigned int dim) const;
367
370 template <size_t VTupleIndex>
371 [[nodiscard]] auto &
373 {
374 if constexpr (VTupleIndex == 0)
375 {
376 return m_Index;
377 }
378 else
379 {
380 static_assert(VTupleIndex == 1);
381 return m_Size;
382 }
383 }
384
386 template <size_t VTupleIndex>
387 [[nodiscard]] const auto &
388 get() const
389 {
390 if constexpr (VTupleIndex == 0)
391 {
392 return m_Index;
393 }
394 else
395 {
396 static_assert(VTupleIndex == 1);
397 return m_Size;
398 }
399 }
400
401protected:
406 void
407 PrintSelf(std::ostream & os, Indent indent) const itkRegionOverrideMacro;
408
409private:
410 IndexType m_Index = { { 0 } };
411 SizeType m_Size = { { 0 } };
412
414 friend class ImageBase<VImageDimension>;
415};
416
417
418// Deduction guide to avoid compiler warnings (-wctad-maybe-unsupported) when using class template argument deduction.
419template <unsigned int VImageDimension>
421
422
423template <unsigned int VImageDimension>
424std::ostream &
425operator<<(std::ostream & os, const ImageRegion<VImageDimension> & region);
426} // end namespace itk
427
428
429namespace std
430{
431#if defined(__clang__) && defined(__apple_build_version__) && (__clang_major__ <= 10)
432# pragma clang diagnostic push
433// Old AppleClang 10.0.0 (Xcode 10.1, newest on macOS 10.13) produced some unimportant warnings, like:
434// "warning: 'tuple_size' defined as a struct template here but previously declared as a class template"
435# pragma clang diagnostic ignored "-Wmismatched-tags"
436#endif
437
438// NOLINTBEGIN(cert-dcl58-cpp)
439// Locally suppressed the following warning from Clang-Tidy (LLVM 17.0.1), as it appears undeserved.
440// > warning: modification of 'std' namespace can result in undefined behavior [cert-dcl58-cpp]
441
449template <unsigned int VImageDimension>
450struct tuple_size<itk::ImageRegion<VImageDimension>> : integral_constant<size_t, 2>
451{};
452
454template <size_t VTupleIndex, unsigned int VImageDimension>
455struct tuple_element<VTupleIndex, itk::ImageRegion<VImageDimension>>
456 : conditional<VTupleIndex == 0, itk::Index<VImageDimension>, itk::Size<VImageDimension>>
457{
458 static_assert(VTupleIndex < tuple_size_v<itk::ImageRegion<VImageDimension>>);
459};
460
461// NOLINTEND(cert-dcl58-cpp)
462
463#if defined(__clang__) && defined(__apple_build_version__) && (__clang_major__ <= 10)
464# pragma clang diagnostic pop
465#endif
466} // namespace std
467
468#undef itkRegionOverrideMacro
469
470#ifndef ITK_MANUAL_INSTANTIATION
471# include "itkImageRegion.hxx"
472#endif
473
474#endif
A templated class holding a point in n-Dimensional image space.
Base class for templated image classes.
An image region represents a structured region of data.
typename IndexType::OffsetType OffsetType
IndexValueType GetIndex(unsigned int i) const
bool ShrinkByRadius(const SizeType &radius)
static constexpr unsigned int ImageDimension
static constexpr unsigned int SliceDimension
bool operator==(const Self &region) const noexcept
bool ShrinkByRadius(OffsetValueType radius)
void SetIndex(unsigned int i, IndexValueType sze)
SizeValueType GetSize(unsigned int i) const
ImageRegion< Self::SliceDimension > SliceRegion
SizeValueType GetNumberOfPixels() const
void ComputeOffsetTable(OffsetTableType offsetTable) const
Self & operator=(const Self &) noexcept=default
const auto & get() const
typename IndexType::IndexValueType IndexValueType
const char * GetNameOfClass() const itkRegionOverrideMacro
SliceRegion Slice(const unsigned int dim) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Self)
ImageRegion() noexcept=default
void SetUpperIndex(const IndexType &idx)
bool IsInside(const ContinuousIndex< TCoordinate, VImageDimension > &index) const
void PrintSelf(std::ostream &os, Indent indent) const itkRegionOverrideMacro
void SetSize(const SizeType &size)
Region::RegionEnum GetRegionType() const itkRegionOverrideMacro
const IndexType & GetIndex() const
void SetIndex(const IndexType &index)
OffsetValueType[ImageDimension+1] OffsetTableType
IndexType & GetModifiableIndex()
void SetSize(unsigned int i, SizeValueType sze)
bool ShrinkByRadius(const IndexValueArrayType radius)
void Print(std::ostream &os, Indent indent=0) const itkRegionOverrideMacro
IndexValueType[ImageDimension] IndexValueArrayType
void PadByRadius(OffsetValueType radius)
SizeType & GetModifiableSize()
typename OffsetType::OffsetValueType OffsetValueType
const SizeType & GetSize() const
static constexpr unsigned int GetImageDimension()
void PadByRadius(const IndexValueArrayType radius)
Index< VImageDimension > IndexType
IndexType GetUpperIndex() const
typename SizeType::SizeValueType SizeValueType
void PadByRadius(const SizeType &radius)
bool Crop(const Self &region)
bool IsInside(const Self &otherRegion) const
Size< VImageDimension > SizeType
bool IsInside(const IndexType &index) const
ImageRegion(const SizeType &size) noexcept
Control indentation during Print() invocation.
Definition itkIndent.h:50
A region represents some portion or piece of data.
Definition itkRegion.h:66
ObjectEnums::RegionEnum RegionEnum
Definition itkRegion.h:73
#define itkRegionOverrideMacro
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)
ImageRegion(const Index< VImageDimension > &, const Size< VImageDimension > &) -> ImageRegion< VImageDimension >
class ITK_TEMPLATE_EXPORT ImageBase
long IndexValueType
Definition itkIntTypes.h:93
STL namespace.
Represent a n-dimensional index in a n-dimensional image.
Definition itkIndex.h:69
itk::IndexValueType IndexValueType
Definition itkIndex.h:79
Offset< VDimension > OffsetType
Definition itkIndex.h:85
Represent a n-dimensional size (bounds) of a n-dimensional image.
Definition itkSize.h:70
itk::SizeValueType SizeValueType
Definition itkSize.h:80