X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvMaximumIntensityProjection.h;h=8f3770123d18816d8d180485d43efc3a9347d3d7;hb=dad240d633996ba10087d96ece317415086f5a59;hp=6da17f0f52658b5bc04510fa83f57bfef31367e0;hpb=95b2888f075a2873e583c6e818716ac8381bee0f;p=clitk.git diff --git a/vv/vvMaximumIntensityProjection.h b/vv/vvMaximumIntensityProjection.h index 6da17f0..8f37701 100644 --- a/vv/vvMaximumIntensityProjection.h +++ b/vv/vvMaximumIntensityProjection.h @@ -23,7 +23,7 @@ class vvSlicerManager; class vvMaximumIntensityProjection { public: - vvMaximumIntensityProjection() {}; + vvMaximumIntensityProjection(): mDimension(0) {}; ///Computes the MIP image on the given vvImage void Compute(vvSlicerManager*); vvImage::Pointer GetOutput() {return mOutputImage;}; @@ -33,6 +33,9 @@ protected: template void Update_WithDimAndPixelType(vvImage::Pointer); template void Update_WithPixelType(vvImage::Pointer); vvImage::Pointer mOutputImage; + //Dimension along which to compute the MIP + unsigned int mDimension; + vvSlicerManager * mCurrentSlicerManager; }; #endif