| 44 | } |
| 45 | |
| 46 | FindingsListVectorType ExtractPathsOfInterest(const DICOMTagPathList& pathsOfInterest, |
| 47 | const DICOMDatasetAccessingImageFrameList& frames) |
| 48 | { |
| 49 | std::vector<DICOMDatasetAccess::FindingsListType> findings; |
| 50 | |
| 51 | for (const auto& entry : pathsOfInterest) |
| 52 | findings.push_back(frames.front()->GetTagValueAsString(entry)); |
| 53 | |
| 54 | return findings; |
| 55 | } |
| 56 | |
| 57 | void SetProperties(BaseData* image, const FindingsListVectorType& findings) |
| 58 | { |