18 #ifndef itkChangeLabelImageFilter_h
19 #define itkChangeLabelImageFilter_h
53 template <
typename TInput,
typename TOutput>
71 return m_ChangeMap[original];
75 SetChange(
const TInput & original,
const TOutput & result)
77 m_ChangeMap[original] = result;
83 m_ChangeMap = changeMap;
95 const typename ChangeMapType::const_iterator it = m_ChangeMap.find(A);
96 if (it != m_ChangeMap.end())
108 template <
typename TInputImage,
typename TOutputImage>
113 Functor::ChangeLabel<typename TInputImage::PixelType, typename TOutputImage::PixelType>>
153 #ifdef ITK_USE_CONCEPT_CHECKING
164 PrintSelf(std::ostream & os,
Indent indent)
const override;
168 #ifndef ITK_MANUAL_INSTANTIATION
169 # include "itkChangeLabelImageFilter.hxx"