| 1246 | } |
| 1247 | |
| 1248 | itk::ModifiedTimeType mitk::MultiLabelSegmentation::GetMTime() const |
| 1249 | { |
| 1250 | itk::ModifiedTimeType result = Superclass::GetMTime(); |
| 1251 | |
| 1252 | for (const auto& groupImage : m_GroupContainer) |
| 1253 | { |
| 1254 | result = std::max(result, groupImage->GetMTime()); |
| 1255 | } |
| 1256 | |
| 1257 | return result; |
| 1258 | } |
| 1259 | |
| 1260 | template <typename ImageType> |
| 1261 | void mitk::MultiLabelSegmentation::CalculateCenterOfMassProcessing(ImageType *itkImage, LabelValueType pixelValue) |
no outgoing calls