|
ITK
6.0.0
Insight Toolkit
|
Go to the documentation of this file.
19 #ifndef itkIndexRange_h
20 #define itkIndexRange_h
25 #include <type_traits>
77 template <
unsigned int VDimension,
bool VBeginAtZero>
81 static constexpr
unsigned int Dimension = VDimension;
115 for (
unsigned int i = 0; i < (VDimension - 1); ++i)
117 auto & indexValue =
m_Index[i];
150 for (
unsigned int i = 0; i < (VDimension - 1); ++i)
152 auto & indexValue =
m_Index[i];
186 assert(lhs.m_MaxIndex == rhs.m_MaxIndex);
188 return lhs.m_Index == rhs.m_Index;
197 return !(lhs == rhs);
202 friend constexpr
bool
205 for (
unsigned int i = VDimension; i > 0; --i)
207 const auto difference = lhs.m_Index[i - 1] - rhs.m_Index[i - 1];
224 friend constexpr
bool
233 friend constexpr
bool
242 friend constexpr
bool
266 using MinIndexType = std::conditional_t<VBeginAtZero, ZeroIndex, IndexType>;
318 template <
bool VIsSubstitutionFailure = VBeginAtZero,
319 typename TVoid = std::enable_if_t<!VIsSubstitutionFailure>>
327 static_assert(!VIsSubstitutionFailure,
328 "This template should (of course) be instantiated without substitution failure.");
329 static_assert(std::is_same_v<TVoid, void>,
330 "std::enable_if<!VIsSubstitutionFailure> should yield void, by definition.");
331 static_assert(!VBeginAtZero,
"This constructor should only be is available when VBeginAtZero is false.");
355 constexpr const_iterator
358 return this->
begin();
362 constexpr const_iterator
403 for (
unsigned int i = 0; i < VDimension; ++i)
429 const bool sizeHasZeroValue = [&
size] {
430 for (
const auto sizeValue :
size)
446 for (
unsigned int i = 0; i < VDimension; ++i)
448 index[i] = minIndex[i] + static_cast<IndexValueType>(normalizedSize[i]) - 1;
463 template <
unsigned int VDimension>
466 template <
unsigned int VDimension>
Represent a n-dimensional index in a n-dimensional image.
constexpr vcl_size_t size() const noexcept
constexpr friend bool operator>(const const_iterator &lhs, const const_iterator &rhs) noexcept
reverse_iterator rbegin() const noexcept
constexpr const_iterator & operator--() noexcept
Represent a n-dimensional size (bounds) of a n-dimensional image.
constexpr reference back()
constexpr const_iterator operator--(int) noexcept
constexpr friend bool operator>=(const const_iterator &lhs, const const_iterator &rhs) noexcept
std::conditional_t< VBeginAtZero, ZeroIndex, IndexType > MinIndexType
constexpr const_iterator operator++(int) noexcept
constexpr iterator end() const noexcept
ptrdiff_t difference_type
const_reverse_iterator crend() const noexcept
Index< VDimension > IndexType
constexpr friend bool operator<(const const_iterator &lhs, const const_iterator &rhs) noexcept
constexpr const_iterator(const IndexType &index, const MinIndexType &minIndex, const IndexType &maxIndex) noexcept
constexpr iterator begin() const noexcept
constexpr const_iterator cend() const noexcept
std::reverse_iterator< const_iterator > const_reverse_iterator
const_reverse_iterator crbegin() const noexcept
IndexRange(const ImageRegion< VDimension > &imageRegion)
std::reverse_iterator< iterator > reverse_iterator
friend bool operator!=(const const_iterator &lhs, const const_iterator &rhs) noexcept
constexpr const_iterator cbegin() const noexcept
constexpr reference operator*() const noexcept
constexpr pointer operator->() const noexcept
constexpr IndexRange(const SizeType &gridSize)
static constexpr Self Filled(const IndexValueType value)
reverse_iterator rend() const noexcept
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
std::bidirectional_iterator_tag iterator_category
constexpr bool empty() const noexcept
friend bool operator==(const const_iterator &lhs, const const_iterator &rhs) noexcept
typename iterator::MinIndexType MinIndexType
constexpr IndexValueType operator[](unsigned int) const
constexpr const_iterator & operator++() noexcept
static constexpr IndexType CalculateMaxIndex(const MinIndexType &minIndex, const SizeType &size)
constexpr friend bool operator<=(const const_iterator &lhs, const const_iterator &rhs) noexcept
static constexpr unsigned int Dimension