MCPcopy Create free account
hub / github.com/MITK/MITK / ParseDicomProperty

Method ParseDicomProperty

Modules/CEST/src/mitkCustomTagParser.cpp:494–509  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

492}
493
494mitk::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
511std::vector<int> mitk::CustomTagParser::GetInternalRevisions()
512{

Calls 2

NewFunction · 0.50
GetValueMethod · 0.45