/usr/include/OTB-5.8/otbSubsampledImageRegionIterator.h is in libotb-dev 5.8.0+dfsg-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 | /*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
Copyright (c) Institut Mines-Telecom. All rights reserved.
See IMTCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef otbSubsampledImageRegionIterator_h
#define otbSubsampledImageRegionIterator_h
#include "otbSubsampledImageRegionConstIterator.h"
namespace otb {
/** \class SubsampledImageRegionIterator
* \brief Regular subsample iterator over an image
*
* This iterator is a itk::ImageRegionConstIterator that perform a subsampled
* scan over an image. It runs one pixel over X (in row, line, slice... dimensions),
* if X is the (integer) value of the SubsampleFactor.
*
* It inherits from SubsampledImageRegionConstIterator and can modify the pixel values...
*
* \ingroup ImageIterator
* \sa SubsampledImageRegionConstIterator
*
* \ingroup OTBCommon
*/
template <class TImage>
class ITK_EXPORT SubsampledImageRegionIterator
: public SubsampledImageRegionConstIterator<TImage>
{
public:
/** Standard typedef. */
typedef SubsampledImageRegionIterator Self;
typedef SubsampledImageRegionConstIterator<TImage> Superclass;
/** Run-time type information (and related methods). */
itkTypeMacro(SubsampledImageRegionConstIterator, SubsampledImageRegionConstIterator);
itkStaticConstMacro(ImageIteratorDimension, unsigned int,
Superclass::ImageIteratorDimension);
// typedef redefinition from superclass
typedef typename Superclass::IndexType IndexType;
typedef typename Superclass::SizeType SizeType;
typedef typename Superclass::RegionType RegionType;
typedef typename Superclass::OffsetType OffsetType;
typedef typename Superclass::ImageType ImageType;
typedef typename Superclass::PixelContainer PixelContainer;
typedef typename Superclass::PixelContainerPointer PixelContainerPointer;
typedef typename Superclass::InternalPixelType InternalPixelType;
typedef typename Superclass::PixelType PixelType;
typedef typename Superclass::AccessorType AccessorType;
typedef typename Superclass::IndexValueType IndexValueType;
// Constructors
SubsampledImageRegionIterator()
: SubsampledImageRegionConstIterator<TImage> () {}
SubsampledImageRegionIterator (const ImageType * ptr, const RegionType ®ion)
: SubsampledImageRegionConstIterator<TImage> (ptr, region) {}
SubsampledImageRegionIterator(const itk::ImageIterator<TImage> &it)
: SubsampledImageRegionConstIterator<TImage> (it) {}
SubsampledImageRegionIterator(const itk::ImageConstIterator<TImage> &it)
: SubsampledImageRegionConstIterator<TImage> (it) {}
/** Set the current pixel value */
void Set(const PixelType& value) const
{
this->m_PixelAccessorFunctor.Set(*(const_cast<InternalPixelType *>(
this->m_Buffer + this->m_Offset)), value);
}
PixelType& Value(void)
{
return *(const_cast<InternalPixelType *>(this->m_Buffer + this->m_Offset));
}
}; // end of class
} // end of namespace otb
#endif
|