VTK
vtkImageAccumulate.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageAccumulate.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
42 #ifndef vtkImageAccumulate_h
43 #define vtkImageAccumulate_h
44 
45 #include "vtkImagingStatisticsModule.h" // For export macro
46 #include "vtkImageAlgorithm.h"
47 
49 
51 {
52 public:
53  static vtkImageAccumulate *New();
55  void PrintSelf(ostream& os, vtkIndent indent);
56 
58 
64  vtkSetVector3Macro(ComponentSpacing, double);
65  vtkGetVector3Macro(ComponentSpacing, double);
67 
69 
75  vtkSetVector3Macro(ComponentOrigin, double);
76  vtkGetVector3Macro(ComponentOrigin, double);
78 
80 
85  void SetComponentExtent(int extent[6]);
86  void SetComponentExtent(int minX, int maxX, int minY, int maxY,
87  int minZ, int maxZ);
88  void GetComponentExtent(int extent[6]);
89  int *GetComponentExtent() {return this->ComponentExtent;}
91 
92 
94 
97  void SetStencilData(vtkImageStencilData *stencil);
98  vtkImageStencilData *GetStencil();
100 
102 
103  vtkSetClampMacro(ReverseStencil, int, 0, 1);
104  vtkBooleanMacro(ReverseStencil, int);
105  vtkGetMacro(ReverseStencil, int);
107 
109 
111  vtkGetVector3Macro(Min, double);
112  vtkGetVector3Macro(Max, double);
113  vtkGetVector3Macro(Mean, double);
114  vtkGetVector3Macro(StandardDeviation, double);
115  vtkGetMacro(VoxelCount, vtkIdType);
117 
119 
120  vtkSetClampMacro(IgnoreZero, int, 0, 1);
121  vtkGetMacro(IgnoreZero, int);
122  vtkBooleanMacro(IgnoreZero, int);
124 
125 protected:
128 
129  double ComponentSpacing[3];
130  double ComponentOrigin[3];
131  int ComponentExtent[6];
132 
133  virtual int RequestUpdateExtent(vtkInformation*,
136  virtual int RequestInformation (vtkInformation*,
139  virtual int RequestData(vtkInformation* request,
140  vtkInformationVector** inputVector,
141  vtkInformationVector* outputVector);
142 
144  double Min[3];
145  double Max[3];
146  double Mean[3];
147  double StandardDeviation[3];
149 
151 
153 
154 private:
155  vtkImageAccumulate(const vtkImageAccumulate&); // Not implemented.
156  void operator=(const vtkImageAccumulate&); // Not implemented.
157 };
158 
159 #endif
160 
161 
162 
Store vtkAlgorithm input/output information.
int vtkIdType
Definition: vtkType.h:275
#define VTKIMAGINGSTATISTICS_EXPORT
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
a simple class to control print indentation
Definition: vtkIndent.h:38
efficient description of an image stencil
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
virtual int FillInputPortInformation(int port, vtkInformation *info)
Generalized histograms up to 3 dimensions.
Generic algorithm superclass for image algs.
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent)
static vtkAlgorithm * New()
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)