Page MenuHomePhabricator

Optimize imageStatisticsContainer
Closed, ResolvedPublic

Description

from review https://phabricator.mitk.org/D170#inline-895

  • itkNewMacro:
    • I would tend to use itkFactorylessNew() to avoid the overhead of the factory in class that is potentially often created and destroyed. In addition this class will likely not profit from the itk factory feature
  • typedef std::vector < std::pair<std::string, std::string> > statisticsOrderedVectorType
    • Use upper camel case
    • use map?
  • void SetTimeGeometryFromImage()
    • remove function
  • vnl_vector<int> m_MinIndex, m_MaxIndex;
    • use itk::Index instead
  • unsigned int m_Label;
    • define LabelIndex/LabelID type instead
  • move implementation to cpp file
  • void Print();
    • remove
  • StatisticsObject GetStatisticsForTimeStep(TimeStepType timeStep) const;
    • document precondition: valid timestep