comparison Framework/Toolbox/ShearWarpProjectiveTransform.h @ 193:4abddd083374 wasm

ShearWarpProjectiveTransform::ApplyAxial()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 20 Mar 2018 14:05:39 +0100
parents 46cb2eedc2e0
children b70e9be013e4
comparison
equal deleted inserted replaced
192:371da7fe2c0e 193:4abddd083374
86 const double sourceZ); 86 const double sourceZ);
87 87
88 static Matrix CalibrateView(const Vector& camera, 88 static Matrix CalibrateView(const Vector& camera,
89 const Vector& principalPoint, 89 const Vector& principalPoint,
90 double angle); 90 double angle);
91
92 static Orthanc::ImageAccessor* ApplyAxial(float& maxValue,
93 const Matrix& M_view, // cf. "CalibrateView()"
94 const ImageBuffer3D& source,
95 Orthanc::PixelFormat targetFormat,
96 unsigned int targetWidth,
97 unsigned int targetHeight,
98 bool mip,
99 double pixelSpacing,
100 unsigned int countSlices,
101 ImageInterpolation shearInterpolation,
102 ImageInterpolation warpInterpolation);
91 }; 103 };
92 } 104 }