]> Creatis software - clitk.git/blob - vv/vvMaximumIntensityProjection.h
removed headers
[clitk.git] / vv / vvMaximumIntensityProjection.h
1 #ifndef vvMaximumIntensityProjection_h
2 #define vvMaximumIntensityProjection_h
3 #include "vvImage.h"
4 class vvSlicerManager;
5
6 class vvMaximumIntensityProjection
7 {
8 public:
9     vvMaximumIntensityProjection() {};
10     ///Computes the MIP image on the given vvImage
11     void Compute(vvSlicerManager*);
12     vvImage::Pointer GetOutput() {return mOutputImage;};
13
14 protected:
15     template<class PixelType,int Dim> void Update_WithDimAndPixelType(vvImage::Pointer);
16     template<class PixelType> void Update_WithPixelType(vvImage::Pointer);
17     vvImage::Pointer mOutputImage;
18 };
19
20 #endif