VTK
dox/Imaging/Math/vtkImageWeightedSum.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkImageWeightedSum.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00030 #ifndef __vtkImageWeightedSum_h
00031 #define __vtkImageWeightedSum_h
00032 
00033 #include "vtkImagingMathModule.h" // For export macro
00034 #include "vtkThreadedImageAlgorithm.h"
00035 
00036 class vtkDoubleArray;
00037 class VTKIMAGINGMATH_EXPORT vtkImageWeightedSum : public vtkThreadedImageAlgorithm
00038 {
00039 public:
00040   static vtkImageWeightedSum *New();
00041   vtkTypeMacro(vtkImageWeightedSum,vtkThreadedImageAlgorithm);
00042   void PrintSelf(ostream& os, vtkIndent indent);
00043 
00045 
00047   virtual void SetWeights(vtkDoubleArray*);
00048   vtkGetObjectMacro(Weights, vtkDoubleArray);
00050 
00052   virtual void SetWeight(vtkIdType id, double weight);
00053 
00055 
00059   vtkGetMacro(NormalizeByWeight, int);
00060   vtkSetClampMacro(NormalizeByWeight, int, 0, 1);
00061   vtkBooleanMacro(NormalizeByWeight, int);
00063 
00065   double CalculateTotalWeight();
00066 
00067 protected:
00068   vtkImageWeightedSum();
00069   ~vtkImageWeightedSum();
00070 
00071   // Array to hold all the weights
00072   vtkDoubleArray *Weights;
00073 
00074   // Boolean flag to divide by sum or not
00075   int NormalizeByWeight;
00076 
00077   int RequestInformation (vtkInformation * vtkNotUsed(request),
00078     vtkInformationVector** vtkNotUsed( inputVector ),
00079     vtkInformationVector *outputVector);
00080 
00081   void ThreadedRequestData (vtkInformation* request,
00082                             vtkInformationVector** inputVector,
00083                             vtkInformationVector* outputVector,
00084                             vtkImageData ***inData, vtkImageData **outData,
00085                             int ext[6], int id);
00086   int FillInputPortInformation(int i, vtkInformation* info);
00087 
00088 private:
00089   vtkImageWeightedSum(const vtkImageWeightedSum&);  // Not implemented.
00090   void operator=(const vtkImageWeightedSum&);  // Not implemented.
00091 };
00092 
00093 #endif
00094