19 #ifndef itkRankHistogram_h
20 #define itkRankHistogram_h
50 template <
typename TInputPixel>
144 for (
typename MapType::iterator it =
m_Map.begin(); it !=
m_Map.end(); it++)
161 bool eraseFlag =
false;
166 typename MapType::iterator eraseIt;
168 while (searchIt !=
m_Map.end())
174 ThisBin = searchIt->second;
178 m_Map.erase(eraseIt);
191 if (searchIt ==
m_Map.end())
201 typename MapType::iterator eraseIt;
203 while (searchIt !=
m_Map.begin())
205 ThisBin = searchIt->second;
206 unsigned int tbelow = total - ThisBin;
213 m_Map.erase(eraseIt);
258 using MapType =
typename std::map<TInputPixel, SizeValueType, Compare>;
273 template <
typename TInputPixel>
345 itkAssertInDebugAndIgnoreInReleaseMacro(q >= 0);
346 itkAssertInDebugAndIgnoreInReleaseMacro(q < (
int)
m_Vec.size());
347 itkAssertInDebugAndIgnoreInReleaseMacro(
m_Entries >= 1);
348 itkAssertInDebugAndIgnoreInReleaseMacro(
m_Vec[q] > 0);
383 using VecType =
typename std::vector<SizeValueType>;
404 class RankHistogram<signed char> :
public VectorRankHistogram<signed char>
408 class RankHistogram<bool> :
public VectorRankHistogram<bool>