| 432 | }; |
| 433 | |
| 434 | void mitk::Label::SetAlgorithmType(AlgorithmType algoType) |
| 435 | { |
| 436 | std::string text = ""; |
| 437 | if (algoType == AlgorithmType::MANUAL) |
| 438 | text = "MANUAL"; |
| 439 | else if (algoType == AlgorithmType::SEMIAUTOMATIC) |
| 440 | text = "SEMIAUTOMATIC"; |
| 441 | else if (algoType == AlgorithmType::AUTOMATIC) |
| 442 | text = "AUTOMATIC"; |
| 443 | |
| 444 | this->SetAlgorithmTypeStr(text); |
| 445 | } |
| 446 | |
| 447 | void mitk::Label::SetAlgorithmTypeStr(const std::string& algoType) |
| 448 | { |