comparison Framework/Volumes/VolumeReslicer.h @ 783:cd13a062c9bd

DicomVolumeImage
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 27 May 2019 15:54:53 +0200
parents fa5febe0f0c2
children 2d8ab34c8c91
comparison
equal deleted inserted replaced
782:b24c208fa953 783:cd13a062c9bd
41 41
42 // Output of reslicing 42 // Output of reslicing
43 bool success_; 43 bool success_;
44 Extent2D extent_; 44 Extent2D extent_;
45 std::auto_ptr<Orthanc::Image> slice_; 45 std::auto_ptr<Orthanc::Image> slice_;
46 double pixelSpacing_;
46 47
47 void CheckIterators(const ImageBuffer3D& source, 48 void CheckIterators(const ImageBuffer3D& source,
48 const CoordinateSystem3D& plane, 49 const CoordinateSystem3D& plane,
49 const OrientedVolumeBoundingBox& box) const; 50 const OrientedVolumeBoundingBox& box) const;
50 51
116 117
117 void Apply(const ImageBuffer3D& source, 118 void Apply(const ImageBuffer3D& source,
118 const VolumeImageGeometry& geometry, 119 const VolumeImageGeometry& geometry,
119 const CoordinateSystem3D& plane, 120 const CoordinateSystem3D& plane,
120 double voxelSize); 121 double voxelSize);
122
123 double GetPixelSpacing() const;
121 }; 124 };
122 } 125 }