comparison Framework/Toolbox/LinearAlgebra.cpp @ 994:1f74bc3459ba

fix build due to rename in Orthanc::DicomMap
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 12 Sep 2019 08:27:12 +0200
parents 32eaf4929b08
children 341e68752354
comparison
equal deleted inserted replaced
993:f270852d3180 994:1f74bc3459ba
110 bool ParseVector(Vector& target, 110 bool ParseVector(Vector& target,
111 const Orthanc::DicomMap& dataset, 111 const Orthanc::DicomMap& dataset,
112 const Orthanc::DicomTag& tag) 112 const Orthanc::DicomTag& tag)
113 { 113 {
114 std::string value; 114 std::string value;
115 return (dataset.CopyToString(value, tag, false) && 115 return (dataset.LookupStringValue(value, tag, false) &&
116 ParseVector(target, value)); 116 ParseVector(target, value));
117 } 117 }
118 118
119 119
120 void NormalizeVector(Vector& u) 120 void NormalizeVector(Vector& u)