| 55 | } |
| 56 | |
| 57 | void SetProperties(BaseData* image, const FindingsListVectorType& findings) |
| 58 | { |
| 59 | for (const auto& finding : findings) |
| 60 | { |
| 61 | for (const auto& entry : finding) |
| 62 | { |
| 63 | auto property = TemporoSpatialStringProperty::New(); |
| 64 | property->SetValue(entry.value); |
| 65 | |
| 66 | image->SetProperty(DICOMTagPathToPropertyName(entry.path), property); |
| 67 | } |
| 68 | } |
| 69 | } |
| 70 | } |
no test coverage detected