comparison Core/DicomFormat/DicomValue.cpp @ 3690:a9ce35d67c3c

implementation of "/instances/.../rendered" for grayscale images
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 25 Feb 2020 13:57:43 +0100
parents 94f4a18a79cc
children
comparison
equal deleted inserted replaced
3689:e85bfba2d307 3690:a9ce35d67c3c
229 bool DicomValue::ParseDouble(double& result) const 229 bool DicomValue::ParseDouble(double& result) const
230 { 230 {
231 return ParseValue<double, true>(result, *this); 231 return ParseValue<double, true>(result, *this);
232 } 232 }
233 233
234 bool DicomValue::ParseFirstFloat(float& result) const
235 {
236 return ParseFirstValue<float, true>(result, *this);
237 }
238
234 bool DicomValue::ParseFirstUnsignedInteger(unsigned int& result) const 239 bool DicomValue::ParseFirstUnsignedInteger(unsigned int& result) const
235 { 240 {
236 return ParseFirstValue<unsigned int, true>(result, *this); 241 return ParseFirstValue<unsigned int, true>(result, *this);
237 } 242 }
238 243