comparison OrthancStone/Sources/Toolbox/DicomInstanceParameters.h @ 1822:0489fe25ce48

support of pixel spacing in ultrasound images from tag SequenceOfUltrasoundRegions
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 26 May 2021 18:13:35 +0200
parents 36430d73e36c
children 2789b4b0e0a8
comparison
equal deleted inserted replaced
1821:36430d73e36c 1822:0489fe25ce48
233 233
234 bool HasPixelSpacing() const 234 bool HasPixelSpacing() const
235 { 235 {
236 return data_.hasPixelSpacing_; 236 return data_.hasPixelSpacing_;
237 } 237 }
238
239 void SetPixelSpacing(double pixelSpacingX,
240 double pixelSpacingY);
241
242 void EnrichUsingDicomWeb(const Json::Value& dicomweb);
238 }; 243 };
239 } 244 }