X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvMaximumIntensityProjection.h;h=8f3770123d18816d8d180485d43efc3a9347d3d7;hb=686056dfe2391eed76302af43b08d30791901965;hp=48051cb552f874d65bf6ea818159538b55b357eb;hpb=0b7c9b1e1215634b02cbd38d4e4ba101d6111ba8;p=clitk.git diff --git a/vv/vvMaximumIntensityProjection.h b/vv/vvMaximumIntensityProjection.h index 48051cb..8f37701 100644 --- a/vv/vvMaximumIntensityProjection.h +++ b/vv/vvMaximumIntensityProjection.h @@ -23,15 +23,19 @@ 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;}; + bool error; 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