Skip to content
Snippets Groups Projects
Commit 37dc36c0 authored by Rémi Cresson's avatar Rémi Cresson
Browse files

REFAC: rename accumulatorMaps to m_AccumulatorMaps

parent ef0c1f1e
No related branches found
No related tags found
3 merge requests!621Release 7.0 (master),!62Enhance VectorDataToLabelImageFilter,!59Enhance StreamingStatisticsMapFromLabelImageFilter
......@@ -260,16 +260,15 @@ private:
PersistentStreamingStatisticsMapFromLabelImageFilter(const Self &); //purposely not implemented
void operator =(const Self&); //purposely not implemented
// Internal
AccumulatorMapCollectionType accumulatorMaps;
AccumulatorMapCollectionType m_AccumulatorMaps;
// User
PixelValueMapType m_MeanRadiometricValue;
PixelValueMapType m_StDevRadiometricValue;
PixelValueMapType m_MinRadiometricValue;
PixelValueMapType m_MaxRadiometricValue;
LabelPopulationMapType m_LabelPopulation;
}; // end of class PersistentStreamingStatisticsMapFromLabelImageFilter
......
......@@ -177,7 +177,7 @@ PersistentStreamingStatisticsMapFromLabelImageFilter<TInputVectorImage, TLabelIm
// Update temporary accumulator
AccumulatorMapType outputAcc;
for (auto& threadAccMap: accumulatorMaps)
for (auto& threadAccMap: m_AccumulatorMaps)
{
for(auto& it: threadAccMap)
{
......@@ -232,7 +232,7 @@ void
PersistentStreamingStatisticsMapFromLabelImageFilter<TInputVectorImage, TLabelImage>
::Reset()
{
accumulatorMaps.clear();
m_AccumulatorMaps.clear();
m_MeanRadiometricValue.clear();
m_StDevRadiometricValue.clear();
......@@ -243,7 +243,7 @@ PersistentStreamingStatisticsMapFromLabelImageFilter<TInputVectorImage, TLabelIm
for (itk::ThreadIdType thread = 0 ; thread < this->GetNumberOfThreads() ; thread++)
{
AccumulatorMapType newMap;
accumulatorMaps.push_back(newMap);
m_AccumulatorMaps.push_back(newMap);
}
}
......@@ -303,14 +303,14 @@ PersistentStreamingStatisticsMapFromLabelImageFilter<TInputVectorImage, TLabelIm
label = labelIt.Get();
// Update the accumulator
if (accumulatorMaps[threadId].count(label) <= 0) //add new element to the map
if (m_AccumulatorMaps[threadId].count(label) <= 0) //add new element to the map
{
AccumulatorType newAcc(value);
accumulatorMaps[threadId][label] = newAcc;
m_AccumulatorMaps[threadId][label] = newAcc;
}
else
{
accumulatorMaps[threadId][label].Update(value);
m_AccumulatorMaps[threadId][label].Update(value);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment