| 1424 | }; |
| 1425 | |
| 1426 | bool mitk::MultiLabelSegmentation::IsLabelLocked(LabelValueType value) const |
| 1427 | { |
| 1428 | if (value == UNLABELED_VALUE) |
| 1429 | { |
| 1430 | return m_UnlabeledLabelLock; |
| 1431 | } |
| 1432 | |
| 1433 | const auto label = this->GetLabel(value); |
| 1434 | return label->GetLocked(); |
| 1435 | } |
| 1436 | |
| 1437 | const mitk::MultiLabelSegmentation::ConstLabelVectorType mitk::MultiLabelSegmentation::GetLabels() const |
| 1438 | { |