]> Creatis software - clitk.git/blobdiff - vv/vvMaximumIntensityProjection.h
Adapt vv RPATH to remove useless building path.
[clitk.git] / vv / vvMaximumIntensityProjection.h
index 48051cb552f874d65bf6ea818159538b55b357eb..8f3770123d18816d8d180485d43efc3a9347d3d7 100644 (file)
@@ -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<class PixelType,int Dim> void Update_WithDimAndPixelType(vvImage::Pointer);
     template<class PixelType> void Update_WithPixelType(vvImage::Pointer);
     vvImage::Pointer mOutputImage;
+    //Dimension along which to compute the MIP
+    unsigned int mDimension;
+  vvSlicerManager * mCurrentSlicerManager;
 };
 
 #endif