| 492 | } |
| 493 | |
| 494 | mitk::PropertyList::Pointer mitk::CustomTagParser::ParseDicomProperty(mitk::TemporoSpatialStringProperty *dicomProperty) |
| 495 | { |
| 496 | if (!dicomProperty) |
| 497 | { |
| 498 | MITK_ERROR << "DICOM property empty"; |
| 499 | } |
| 500 | |
| 501 | auto results = mitk::PropertyList::New(); |
| 502 | |
| 503 | if (dicomProperty) |
| 504 | { |
| 505 | results = ParseDicomPropertyString(dicomProperty->GetValue()); |
| 506 | } |
| 507 | |
| 508 | return results; |
| 509 | } |
| 510 | |
| 511 | std::vector<int> mitk::CustomTagParser::GetInternalRevisions() |
| 512 | { |