21 #ifndef otbScalarImageToPanTexTextureFilter_hxx
22 #define otbScalarImageToPanTexTextureFilter_hxx
25 #include "itkImageRegionIteratorWithIndex.h"
26 #include "itkConstNeighborhoodIterator.h"
27 #include "itkImageRegionIterator.h"
28 #include "itkProgressReporter.h"
29 #include "itkNumericTraits.h"
33 template <
class TInputImage,
class TOutputImage>
35 : m_Radius(), m_NumberOfBinsPerAxis(8), m_InputImageMinimum(0), m_InputImageMaximum(255)
37 this->DynamicMultiThreadingOn();
39 this->SetNumberOfRequiredOutputs(1);
43 m_OffsetList = { {0, 1}, {0, 2}, {1, -2}, {1, -1}, {1, 0}, {1, 1}, {1, 2}, {2, -1}, {2, 0}, {2, 1} };
46 template <
class TInputImage,
class TOutputImage>
50 Superclass::GenerateInputRequestedRegion();
56 if (!inputPtr || !outputPtr)
71 inputRequestedRegion.PadByRadius(m_Radius + maxOffsetSize);
74 if (inputRequestedRegion.Crop(inputPtr->GetLargestPossibleRegion()))
76 inputPtr->SetRequestedRegion(inputRequestedRegion);
81 itk::InvalidRequestedRegionError e(__FILE__, __LINE__);
82 e.SetLocation(ITK_LOCATION);
83 e.SetDescription(
"Requested region is (at least partially) outside the largest possible region.");
84 e.SetDataObject(inputPtr);
89 template <
class TInputImage,
class TOutputImage>
96 itk::ImageRegionIteratorWithIndex<OutputImageType> outputIt(outputPtr, outputRegionForThread);
99 while (!outputIt.IsAtEnd())
102 double out = itk::NumericTraits<double>::max();
105 typename OffsetListType::const_iterator offIt;
106 for (offIt = m_OffsetList.begin(); offIt != m_OffsetList.end(); ++offIt)
111 typename InputRegionType::IndexType inputIndex;
112 typename InputRegionType::SizeType inputSize;
117 for (
unsigned int dim = 0; dim < InputImageType::ImageDimension; ++dim)
119 inputIndex[dim] = outputIt.GetIndex()[dim] - m_Radius[dim];
120 inputSize[dim] = 2 * m_Radius[dim] + 1;
125 inputRegion.Crop(inputPtr->GetRequestedRegion());
129 unsigned int minRadius = 0;
130 for (
unsigned int i = 0; i < currentOffset.GetOffsetDimension(); i++)
132 unsigned int distance = std::abs(currentOffset[i]);
133 if (distance > minRadius)
135 minRadius = distance;
138 neighborhoodRadius.Fill(minRadius);
142 GLCIList->Initialize(m_NumberOfBinsPerAxis, m_InputImageMinimum, m_InputImageMaximum);
144 typedef itk::ConstNeighborhoodIterator<InputImageType> NeighborhoodIteratorType;
145 NeighborhoodIteratorType neighborIt = NeighborhoodIteratorType(neighborhoodRadius, inputPtr, inputRegion);
147 for (neighborIt.GoToBegin(); !neighborIt.IsAtEnd(); ++neighborIt)
149 const InputPixelType centerPixelIntensity = neighborIt.GetCenterPixel();
151 const InputPixelType pixelIntensity = neighborIt.GetPixel(currentOffset, pixelInBounds);
156 GLCIList->AddPixelPair(centerPixelIntensity, pixelIntensity);
161 double totalFrequency =
static_cast<double>(GLCIList->GetTotalFrequency());
165 constVectorIt = glcVector.begin();
166 while (constVectorIt != glcVector.end())
170 inertia += (index[0] - index[1]) * (index[0] - index[1]) * frequency;
InputRegionType::SizeType SizeType
ScalarImageToPanTexTextureFilter()
CooccurrenceIndexedListType::RelativeFrequencyType RelativeFrequencyType
InputImageType::Pointer InputImagePointerType
CooccurrenceIndexedListType::Pointer CooccurrenceIndexedListPointerType
OutputImageType::Pointer OutputImagePointerType
CooccurrenceIndexedListType::VectorType VectorType
OutputImageType::RegionType OutputRegionType
InputImageType::OffsetType OffsetType
InputImageType::RegionType InputRegionType
InputImageType::PixelType InputPixelType
void DynamicThreadedGenerateData(const OutputRegionType &outputRegion) override
TInpuImage InputImageType
CooccurrenceIndexedListType::IndexType CooccurrenceIndexType
void GenerateInputRequestedRegion() override
OffsetListType m_OffsetList
VectorType::const_iterator VectorConstIteratorType
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.