/usr/include/ITK-4.5/itkConstNeighborhoodIterator.h is in libinsighttoolkit4-dev 4.5.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef __itkConstNeighborhoodIterator_h
#define __itkConstNeighborhoodIterator_h
#include <vector>
#include <cstring>
#include <iostream>
#include "itkImage.h"
#include "itkNeighborhood.h"
#include "itkMacro.h"
#include "itkZeroFluxNeumannBoundaryCondition.h"
namespace itk
{
/** \class ConstNeighborhoodIterator
*
* \brief Const version of NeighborhoodIterator, defining iteration of a local
* N-dimensional neighborhood of pixels across an itk::Image.
*
* ConstNeighborhoodIterator implements the read-only methods of
* NeighborhoodIterator. It serves as a base class from which other iterators
* are derived. See NeighborhoodIterator for more complete information.
*
* \ingroup ImageIterators
*
* \sa Neighborhood \sa ImageIterator \sa NeighborhoodIterator
* \ingroup ITKCommon
*
* \wiki
* \wikiexample{Iterators/ConstNeighborhoodIterator,Iterate over a region of an image with a neighborhood (without write access)}
* \endwiki
*/
template< typename TImage, typename TBoundaryCondition =
ZeroFluxNeumannBoundaryCondition< TImage > >
class ConstNeighborhoodIterator:
public Neighborhood< typename TImage::InternalPixelType *,
TImage::ImageDimension >
{
public:
/** Extract image type information. */
typedef typename TImage::InternalPixelType InternalPixelType;
typedef typename TImage::PixelType PixelType;
/** Save the image dimension. */
itkStaticConstMacro(Dimension, unsigned int, TImage::ImageDimension);
/** Type used to refer to space dimensions */
typedef unsigned int DimensionValueType;
/** Standard class typedefs. */
typedef ConstNeighborhoodIterator Self;
typedef Neighborhood< InternalPixelType *,
itkGetStaticConstMacro(Dimension) > Superclass;
/** Inherit typedefs from superclass */
typedef typename Superclass::OffsetType OffsetType;
typedef typename Superclass::RadiusType RadiusType;
typedef typename Superclass::SizeType SizeType;
typedef typename Superclass::Iterator Iterator;
typedef typename Superclass::ConstIterator ConstIterator;
/** Typedef support for common objects */
typedef TImage ImageType;
typedef typename TImage::RegionType RegionType;
typedef Index< itkGetStaticConstMacro(Dimension) > IndexType;
typedef Neighborhood< PixelType, itkGetStaticConstMacro(Dimension) >
NeighborhoodType;
/** Type used to refer to the elements in the list of neighbor pixels. */
typedef typename NeighborhoodType::NeighborIndexType NeighborIndexType;
/** Typedef for the functor used to access neighborhoods of pixel pointers.
* This is obtained as a trait from the image and is different for Image
* and VectorImage. */
typedef typename ImageType::NeighborhoodAccessorFunctorType
NeighborhoodAccessorFunctorType;
/** Typedef for boundary condition type. */
typedef TBoundaryCondition BoundaryConditionType;
/** Typedef for generic boundary condition pointer */
typedef ImageBoundaryCondition< ImageType > *ImageBoundaryConditionPointerType;
typedef ImageBoundaryCondition< ImageType > const *
ImageBoundaryConditionConstPointerType;
/** Default constructor */
ConstNeighborhoodIterator();
/** Virtual destructor */
virtual ~ConstNeighborhoodIterator() {}
/** Copy constructor */
ConstNeighborhoodIterator(const ConstNeighborhoodIterator &);
/** Constructor which establishes the region size, neighborhood, and image
* over which to walk. */
ConstNeighborhoodIterator(const SizeType & radius,
const ImageType *ptr,
const RegionType & region)
{
this->Initialize(radius, ptr, region);
for ( unsigned int i = 0; i < Dimension; i++ )
{ m_InBounds[i] = false; }
this->ResetBoundaryCondition();
m_NeighborhoodAccessorFunctor = ptr->GetNeighborhoodAccessor();
m_NeighborhoodAccessorFunctor.SetBegin( ptr->GetBufferPointer() );
}
/** Assignment operator */
Self & operator=(const Self & orig);
/** Standard itk print method */
virtual void PrintSelf(std::ostream &, Indent) const;
/** Computes the internal, N-d offset of a pixel array position n from
* (0,0, ..., 0) in the "upper-left" corner of the neighborhood. */
OffsetType ComputeInternalIndex(NeighborIndexType n) const;
/** Returns the array of upper loop bounds used during iteration. */
IndexType GetBound() const
{ return m_Bound; }
/** Returns the loop bound used to define the edge of a single
* dimension in the itk::Image region. */
IndexValueType GetBound(NeighborIndexType n) const
{ return m_Bound[n]; }
/** Returns the pointer to the center pixel of the neighborhood. */
const InternalPixelType * GetCenterPointer() const
{ return ( this->operator[]( ( this->Size() ) >> 1 ) ); }
/** Returns the pixel referenced at the center of the
* ConstNeighborhoodIterator. */
PixelType GetCenterPixel() const
{ return m_NeighborhoodAccessorFunctor.Get( this->GetCenterPointer() ); }
/** Returns a smartpointer to the image on which this iterator operates. */
const ImageType * GetImagePointer(void) const
{ return m_ConstImage; }
/** Returns the N-dimensional index of the iterator's position in
* the image. */
virtual IndexType GetIndex(void) const
{ return m_Loop; }
/** Virtual function that "dereferences" a ConstNeighborhoodIterator,
* returning a Neighborhood of pixel values. */
virtual NeighborhoodType GetNeighborhood() const;
/** Returns the pixel value located at a linear array location i. */
virtual PixelType GetPixel(NeighborIndexType i) const
{
if ( !m_NeedToUseBoundaryCondition )
{
return ( m_NeighborhoodAccessorFunctor.Get( this->operator[](i) ) );
}
bool inbounds;
return this->GetPixel(i, inbounds);
}
/** Return the pixel value located at a linear array location i.
* Sets "IsInBounds" to true if the location is inside the
* image and the pixel value returned is an actual pixel in the
* image. Sets "IsInBounds" to false if the location is outside the
* image and the pixel value returned is a boundary condition. */
virtual PixelType GetPixel(NeighborIndexType i, bool & IsInBounds) const;
/** Returns the pixel value located at the itk::Offset o from the center of
the neighborhood. */
virtual PixelType GetPixel(const OffsetType & o) const
{
bool inbounds;
return ( this->GetPixel(this->GetNeighborhoodIndex(o), inbounds) );
}
/** Returns the pixel value located at the itk::Offset o from the center of
* the neighborhood. Sets "IsInBounds" to true if the offset is inside the
* image and the pixel value returned is an actual pixel in the
* image. Sets "IsInBounds" to false if the offset is outside the
* image and the pixel value returned is a boundary condition. */
virtual PixelType GetPixel(const OffsetType & o,
bool & IsInBounds) const
{ return ( this->GetPixel(this->GetNeighborhoodIndex(o), IsInBounds) ); }
/** Returns the pixel value located i pixels distant from the neighborhood
* center in the positive specified ``axis'' direction. No bounds checking
* is done on the size of the neighborhood. */
virtual PixelType GetNext(const unsigned axis, NeighborIndexType i) const
{
return ( this->GetPixel( this->GetCenterNeighborhoodIndex()
+ ( i * this->GetStride(axis) ) ) );
}
/** Returns the pixel value located one pixel distant from the neighborhood
* center in the specifed positive axis direction. No bounds checking is
* done on the size of the neighborhood. */
virtual PixelType GetNext(const unsigned axis) const
{
return ( this->GetPixel( this->GetCenterNeighborhoodIndex()
+ this->GetStride(axis) ) );
}
/** Returns the pixel value located i pixels distant from the neighborhood
* center in the negative specified ``axis'' direction. No bounds checking
* is done on the size of the neighborhood. */
virtual PixelType GetPrevious(const unsigned axis, NeighborIndexType i) const
{
return ( this->GetPixel( this->GetCenterNeighborhoodIndex()
- ( i * this->GetStride(axis) ) ) );
}
/** Returns the pixel value located one pixel distant from the neighborhood
* center in the specifed negative axis direction. No bounds checking is
* done on the size of the neighborhood. */
virtual PixelType GetPrevious(const unsigned axis) const
{
return ( this->GetPixel( this->GetCenterNeighborhoodIndex()
- this->GetStride(axis) ) );
}
/** Returns the image index for neighbor pixel at offset o from the center of
the neighborhood. */
virtual IndexType GetIndex(const OffsetType & o) const
{ return ( this->GetIndex() + o ); }
/** Returns the image index for neighbor pixel at index i in the
neighborhood. */
virtual IndexType GetIndex(NeighborIndexType i) const
{ return ( this->GetIndex() + this->GetOffset(i) ); }
/** Returns the region of iteration. */
RegionType GetRegion() const
{ return m_Region; }
/** Returns the N-dimensional starting index of the iterator's position on
* the image. */
IndexType GetBeginIndex() const
{ return m_BeginIndex; }
/** Returns a bounding box for the region spanned by this neighborhood
represented by an itk::ImageRegion */
RegionType GetBoundingBoxAsImageRegion() const;
/** Returns the offsets used to wrap across dimensional boundaries. */
OffsetType GetWrapOffset() const
{ return m_WrapOffset; }
/** Returns the internal offset associated with wrapping around a single
* dimension's region boundary in the itk::Image. An offset for each
* dimension is necessary to shift pointers when wrapping around region
* edges because region memory is not necessarily contiguous within the
* buffer. */
OffsetValueType GetWrapOffset(NeighborIndexType n) const
{ return m_WrapOffset[n]; }
/** Virtual method for rewinding the iterator to its beginning pixel.
* This is useful for writing functions which take neighborhood iterators
* of arbitrary type and must use virtual functions. */
virtual void GoToBegin();
/** Virtual method for sending the iterator to one past the last pixel in its
* region. */
virtual void GoToEnd();
/** Initializes the iterator to walk a particular image and a particular
* region of that image. */
virtual void Initialize(const SizeType & radius, const ImageType *ptr,
const RegionType & region);
/** Virtual method for determining whether the iterator is at the
* beginning of its iteration region. */
virtual bool IsAtBegin() const
{ return ( this->GetCenterPointer() == m_Begin ); }
/** Virtual method for determining whether the iterator has reached the
* end of its iteration region. */
virtual bool IsAtEnd() const
{
if ( this->GetCenterPointer() > m_End )
{
ExceptionObject e(__FILE__, __LINE__);
std::ostringstream msg;
msg << "In method IsAtEnd, CenterPointer = " << this->GetCenterPointer()
<< " is greater than End = " << m_End
<< std::endl
<< " " << *this;
e.SetDescription( msg.str().c_str() );
throw e;
}
return ( this->GetCenterPointer() == m_End );
}
/** Increments the pointers in the ConstNeighborhoodIterator,
* wraps across boundaries automatically, accounting for
* the disparity in the buffer size and the region size of the
* image. */
Self & operator++();
/** Decrements the pointers in the ConstNeighborhoodIterator,
* wraps across boundaries automatically, accounting for
* the disparity in the buffer size and the region size of the
* image. */
Self & operator--();
/** Returns a boolean == comparison of the memory addresses of the center
* elements of two ConstNeighborhoodIterators of like pixel type and
* dimensionality. The radii of the iterators are ignored. */
bool operator==(const Self & it) const
{ return it.GetCenterPointer() == this->GetCenterPointer(); }
/** Returns a boolean != comparison of the memory addresses of the center
* elements of two ConstNeighborhoodIterators of like pixel type and
* dimensionality. The radii of the iterators are ignored. */
bool operator!=(const Self & it) const
{ return it.GetCenterPointer() != this->GetCenterPointer(); }
/** Returns a boolean < comparison of the memory addresses of the center
* elements of two ConstNeighborhoodIterators of like pixel type and
* dimensionality. The radii of the iterators are ignored. */
bool operator<(const Self & it) const
{ return this->GetCenterPointer() < it.GetCenterPointer(); }
/** Returns a boolean < comparison of the memory addresses of the center
* elements of two ConstNeighborhoodIterators of like pixel type and
* dimensionality. The radii of the iterators are ignored. */
bool operator<=(const Self & it) const
{ return this->GetCenterPointer() <= it.GetCenterPointer(); }
/** Returns a boolean > comparison of the memory addresses of the center
* elements of two ConstNeighborhoodIterators of like pixel type and
* dimensionality. The radii of the iterators are ignored. */
bool operator>(const Self & it) const
{ return this->GetCenterPointer() > it.GetCenterPointer(); }
/** Returns a boolean >= comparison of the memory addresses of the center
* elements of two ConstNeighborhoodIterators of like pixel type and
* dimensionality. The radii of the iterators are ignored. */
bool operator>=(const Self & it) const
{ return this->GetCenterPointer() >= it.GetCenterPointer(); }
/** This method positions the iterator at an indexed location in the
* image. SetLocation should _NOT_ be used to update the position of the
* iterator during iteration, only for initializing it to a position
* prior to iteration. This method is not optimized for speed. */
void SetLocation(const IndexType & position)
{
this->SetLoop(position);
this->SetPixelPointers(position);
}
/** Addition of an itk::Offset. Note that this method does not do any bounds
* checking. Adding an offset that moves the iterator out of its assigned
* region will produce undefined results. */
Self & operator+=(const OffsetType &);
/** Subtraction of an itk::Offset. Note that this method does not do any
* bounds checking. Subtracting an offset that moves the iterator out
* of its assigned region will produce undefined results. */
Self & operator-=(const OffsetType &);
/** Distance between two iterators */
OffsetType operator-(const Self & b)
{ return m_Loop - b.m_Loop; }
/** Returns false if the iterator overlaps region boundaries, true
* otherwise. Also updates an internal boolean array indicating
* which of the iterator's faces are out of bounds. */
bool InBounds() const;
/** Returns true if the neighborhood index is within region boundaries,
* false otherwise.
* If false, then internalIndex and offset are calculated. Otherwise their
* values are left unchanged.
* Also updates an internal boolean array indicating
* which of the iterator's faces are out of bounds.
* \param n - linear neighborhood index.
* \param internalIndex - calculated for index \c n only when the neighborhood is not
* completely within region boundaries.
* \param offset - per-dimension offsets for index n to nearest boundary index,
* calculate only when the neighborhood is not completely within region boundaries. */
bool IndexInBounds(NeighborIndexType n, OffsetType & internalIndex, OffsetType & offset ) const;
/** Allows a user to override the internal boundary condition. Care should
* be taken to ensure that the overriding boundary condition is a persistent
* object during the time it is referenced. The overriding condition
* can be of a different type than the default type as long as it is
* a subclass of ImageBoundaryCondition. */
virtual void OverrideBoundaryCondition(const
ImageBoundaryConditionPointerType i)
{ m_BoundaryCondition = i; }
/** Resets the boundary condition to the internal, default conditions
* specified by the template parameter. */
virtual void ResetBoundaryCondition()
{ m_BoundaryCondition = &m_InternalBoundaryCondition; }
/** Sets the internal, default boundary condition. */
void SetBoundaryCondition(const TBoundaryCondition & c)
{ m_InternalBoundaryCondition = c; }
/** */
ImageBoundaryConditionPointerType GetBoundaryCondition() const
{ return m_BoundaryCondition; }
/** */
void NeedToUseBoundaryConditionOn()
{
this->SetNeedToUseBoundaryCondition(true);
}
void NeedToUseBoundaryConditionOff()
{
this->SetNeedToUseBoundaryCondition(false);
}
void SetNeedToUseBoundaryCondition(bool b)
{
m_NeedToUseBoundaryCondition = b;
}
bool GetNeedToUseBoundaryCondition() const
{
return m_NeedToUseBoundaryCondition;
}
/** Set the region to iterate over. */
virtual void SetRegion(const RegionType & region);
protected:
/** Default method for setting the coordinate location of the iterator.
* Loop indices correspond to the actual Image region index. */
virtual void SetLoop(const IndexType & p)
{ m_Loop = p; m_IsInBoundsValid = false; }
/** Virtual method for setting internal loop boundaries. This
* method must be defined in each subclass because
* each subclass may handle loop boundaries differently. */
virtual void SetBound(const SizeType &);
/** Default method for setting the values of the internal pointers
* to itk::Image memory buffer locations. This method should
* generally only be called when the iterator is initialized.
* \sa SetLocation */
virtual void SetPixelPointers(const IndexType &);
/** Default method for setting the index of the first pixel in the
* iteration region. */
virtual void SetBeginIndex(const IndexType & start)
{ m_BeginIndex = start; }
/** Default method for setting the index of the first pixel in the
* iteration region. */
virtual void SetEndIndex();
/** The starting index for iteration within the itk::Image region
* on which this ConstNeighborhoodIterator is defined. */
IndexType m_BeginIndex;
/** An array of upper looping boundaries used during iteration. */
IndexType m_Bound;
/** A pointer to the first pixel in the iteration region. */
const InternalPixelType *m_Begin;
/** The image on which iteration is defined. */
typename ImageType::ConstWeakPointer m_ConstImage;
/** A pointer to one past the last pixel in the iteration region. */
const InternalPixelType *m_End;
/** The end index for iteration within the itk::Image region
* on which this ConstNeighborhoodIterator is defined. */
IndexType m_EndIndex;
/** Array of loop counters used during iteration. */
IndexType m_Loop;
/** The region over which iteration is defined. */
RegionType m_Region;
/** The internal array of offsets that provide support for regions of
* interest.
* An offset for each dimension is necessary to shift pointers when wrapping
* around region edges because region memory is not necessarily contiguous
* within the buffer. */
OffsetType m_WrapOffset;
/** Pointer to the actual boundary condition that will be used.
* By default this points to m_BoundaryCondition, but
* OverrideBoundaryCondition allows a user to point this variable an external
* boundary condition. */
ImageBoundaryConditionPointerType m_BoundaryCondition;
/** Denotes which of the iterators dimensional sides spill outside
* region of interest boundaries. */
mutable bool m_InBounds[Dimension];
/** Denotes if iterator is entirely within bounds */
mutable bool m_IsInBounds;
/** Is the m_InBounds and m_IsInBounds variables up to date? Set to
* false whenever the iterator is repositioned. Set to true within
* InBounds(). */
mutable bool m_IsInBoundsValid;
/** Lower threshold of in-bounds loop counter values. */
IndexType m_InnerBoundsLow;
/** Upper threshold of in-bounds loop counter values. */
IndexType m_InnerBoundsHigh;
/** Default boundary condition. */
TBoundaryCondition m_InternalBoundaryCondition;
/** Does the specified region need to worry about boundary conditions? */
bool m_NeedToUseBoundaryCondition;
/** Functor type used to access neighborhoods of pixel pointers */
NeighborhoodAccessorFunctorType m_NeighborhoodAccessorFunctor;
};
template< typename TImage >
inline ConstNeighborhoodIterator< TImage >
operator+(const ConstNeighborhoodIterator< TImage > & it,
const typename ConstNeighborhoodIterator< TImage >
::OffsetType & ind)
{
ConstNeighborhoodIterator< TImage > ret;
ret = it;
ret += ind;
return ret;
}
template< typename TImage >
inline ConstNeighborhoodIterator< TImage >
operator+(const typename ConstNeighborhoodIterator< TImage >
::OffsetType & ind,
const ConstNeighborhoodIterator< TImage > & it)
{ return ( it + ind ); }
template< typename TImage >
inline ConstNeighborhoodIterator< TImage >
operator-(const ConstNeighborhoodIterator< TImage > & it,
const typename ConstNeighborhoodIterator< TImage >
::OffsetType & ind)
{
ConstNeighborhoodIterator< TImage > ret;
ret = it;
ret -= ind;
return ret;
}
} // namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkConstNeighborhoodIterator.hxx"
#endif
#endif
|