22 #ifndef otbStreamingStatisticsMapFromLabelImageFilter_hxx
23 #define otbStreamingStatisticsMapFromLabelImageFilter_hxx
26 #include "itkInputDataObjectIterator.h"
27 #include "itkImageRegionIterator.h"
28 #include "itkProgressReporter.h"
36 template <
class TInputVectorImage,
class TLabelImage>
45 this->DynamicMultiThreadingOff();
46 typename PixelValueMapObjectType::Pointer output
48 this->itk::ProcessObject::SetNthOutput(1, output.GetPointer());
53 template <
class TInputVectorImage,
class TLabelImage>
54 typename itk::DataObject::Pointer
57 return static_cast<itk::DataObject*
>(PixelValueMapObjectType::New().GetPointer());
60 template <
class TInputVectorImage,
class TLabelImage>
64 this->itk::ProcessObject::SetNthInput(1,
const_cast<LabelImageType*
>(input));
67 template <
class TInputVectorImage,
class TLabelImage>
71 return static_cast<const TLabelImage*
>(this->itk::ProcessObject::GetInput(1));
74 template <
class TInputVectorImage,
class TLabelImage>
78 return m_MeanRadiometricValue;
81 template <
class TInputVectorImage,
class TLabelImage>
85 return m_StDevRadiometricValue;
88 template <
class TInputVectorImage,
class TLabelImage>
92 return m_MinRadiometricValue;
95 template <
class TInputVectorImage,
class TLabelImage>
99 return m_MaxRadiometricValue;
102 template <
class TInputVectorImage,
class TLabelImage>
106 return m_LabelPopulation;
109 template <
class TInputVectorImage,
class TLabelImage>
112 Superclass::GenerateOutputInformation();
114 if (this->GetInput())
116 this->GetOutput()->CopyInformation(this->GetInput());
117 this->GetOutput()->SetLargestPossibleRegion(this->GetInput()->GetLargestPossibleRegion());
119 if (this->GetOutput()->GetRequestedRegion().GetNumberOfPixels() == 0)
121 this->GetOutput()->SetRequestedRegion(this->GetOutput()->GetLargestPossibleRegion());
126 template <
class TInputVectorImage,
class TLabelImage>
136 template <
class TInputVectorImage,
class TLabelImage>
141 auto endAcc = outputAcc.end();
143 for (
auto const& threadAccMap : m_AccumulatorMaps)
145 for (
auto const& it : threadAccMap)
147 auto label = it.first;
148 auto itAcc = outputAcc.find(label);
151 outputAcc.emplace(label, it.second);
155 itAcc->second.Update(it.second);
161 for (
auto& it : outputAcc)
164 const auto& bandCount = it.second.GetBandCount();
165 const auto& sum = it.second.GetSum();
166 const auto& sqSum = it.second.GetSqSum();
169 m_LabelPopulation[label] = it.second.GetCount();
176 for (
unsigned int band = 0; band <
mean.GetSize(); band++)
179 auto count = bandCount[band];
184 const double variance = (sqSum[band] - (sum[band] *
mean[band])) / (count - 1);
185 std[band] = std::sqrt(variance);
188 if (this->GetUseNoDataValue() && count == 0)
190 min[band] = this->GetNoDataValue();
191 max[band] = this->GetNoDataValue();
194 m_MeanRadiometricValue.emplace(label, std::move(
mean));
195 m_StDevRadiometricValue.emplace(label, std::move(std));
198 m_MinRadiometricValue.emplace(label, std::move(min));
199 m_MaxRadiometricValue.emplace(label, std::move(max));
203 template <
class TInputVectorImage,
class TLabelImage>
206 m_AccumulatorMaps.clear();
208 m_MeanRadiometricValue.clear();
209 m_StDevRadiometricValue.clear();
210 m_MinRadiometricValue.clear();
211 m_MaxRadiometricValue.clear();
212 m_LabelPopulation.clear();
213 m_AccumulatorMaps.resize(this->GetNumberOfWorkUnits());
216 template <
class TInputVectorImage,
class TLabelImage>
220 this->itk::ProcessObject::GenerateInputRequestedRegion();
223 for (itk::InputDataObjectIterator it(
this); !it.IsAtEnd(); it++)
238 this->CallCopyOutputRegionToInputRegion(inputRegion, this->GetOutput()->GetRequestedRegion());
239 input->SetRequestedRegion(inputRegion);
244 template <
class TInputVectorImage,
class TLabelImage>
246 itk::ThreadIdType threadId)
252 LabelImagePointer labelInputPtr =
const_cast<TLabelImage*
>(this->GetInputLabelImage());
255 itk::ImageRegionConstIterator<TInputVectorImage> inIt(inputPtr, outputRegionForThread);
256 itk::ImageRegionConstIterator<TLabelImage> labelIt(labelInputPtr, outputRegionForThread);
257 itk::ProgressReporter progress(
this, threadId, outputRegionForThread.GetNumberOfPixels());
259 auto& acc = m_AccumulatorMaps[threadId];
260 auto endAcc = acc.end();
263 for (inIt.GoToBegin(), labelIt.GoToBegin(); !inIt.IsAtEnd() && !labelIt.IsAtEnd(); ++inIt, ++labelIt)
265 const auto& value = inIt.Get();
266 auto label = labelIt.Get();
269 auto itAcc = acc.find(label);
272 acc.emplace(label,
AccumulatorType(this->GetNoDataValue(), this->GetUseNoDataValue(), value));
276 itAcc->second.Update(value);
279 progress.CompletedPixel();
283 template <
class TInputVectorImage,
class TLabelImage>
286 Superclass::PrintSelf(os, indent);
TInputVectorImage::Pointer InputVectorImagePointer
std::unordered_map< LabelPixelType, RealVectorPixelType > PixelValueMapType
std::unordered_map< LabelPixelType, double > LabelPopulationMapType
PersistentStreamingStatisticsMapFromLabelImageFilter()
void GenerateInputRequestedRegion() override
itk::VariableLengthVector< double > RealVectorPixelType
virtual void SetInputLabelImage(const LabelImageType *image)
void Reset(void) override
void AllocateOutputs() override
PixelValueMapType GetMaxValueMap() const
LabelImageType::PixelType LabelPixelType
itk::ProcessObject::DataObjectPointerArraySizeType DataObjectPointerArraySizeType
PixelValueMapType GetMinValueMap() const
void Synthetize(void) override
PixelValueMapType GetMeanValueMap() const
ImageBaseType::RegionType InputImageRegionType
itk::ImageBase< InputImageDimension > ImageBaseType
void ThreadedGenerateData(const RegionType &outputRegionForThread, itk::ThreadIdType threadId) override
itk::SimpleDataObjectDecorator< PixelValueMapType > PixelValueMapObjectType
void PrintSelf(std::ostream &os, itk::Indent indent) const override
DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx) override
LabelPopulationMapType GetLabelPopulationMap() const
TLabelImage::Pointer LabelImagePointer
std::unordered_map< LabelPixelType, AccumulatorType > AccumulatorMapType
TLabelImage LabelImageType
VectorImageType::RegionType RegionType
virtual const LabelImageType * GetInputLabelImage()
PixelValueMapType GetStandardDeviationValueMap() const
void GenerateOutputInformation() override
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.