| 323 | } |
| 324 | |
| 325 | mitk::LabelSetImageHelper::LabelClassNameToLabelValueMapType |
| 326 | mitk::LabelSetImageHelper::SplitLabelValuesByClassName(const MultiLabelSegmentation* labelSetImage, MultiLabelSegmentation::GroupIndexType groupID) |
| 327 | { |
| 328 | if (nullptr == labelSetImage) |
| 329 | mitkThrow() << "Cannot split label values. Invalid MultiLabelSegmentation pointer passed"; |
| 330 | |
| 331 | return SplitLabelValuesByClassName(labelSetImage, groupID, labelSetImage->GetLabelValuesByGroup(groupID)); |
| 332 | } |
| 333 | |
| 334 | mitk::LabelSetImageHelper::LabelClassNameToLabelValueMapType |
| 335 | mitk::LabelSetImageHelper::SplitLabelValuesByClassName(const MultiLabelSegmentation* labelSetImage, MultiLabelSegmentation::GroupIndexType groupID, const MultiLabelSegmentation::LabelValueVectorType& labelValues) |
nothing calls this directly
no test coverage detected