25 #ifndef __vtkImageGaussianSmooth_h
26 #define __vtkImageGaussianSmooth_h
45 vtkSetVector3Macro(StandardDeviations,
double);
46 void SetStandardDeviation(
double std)
47 {this->SetStandardDeviations(std,std,std);}
48 void SetStandardDeviations(
double a,
double b)
50 vtkGetVector3Macro(StandardDeviations,
double);
56 void SetStandardDeviation(
double a,
double b)
57 {this->SetStandardDeviations(a,b,0.0);}
58 void SetStandardDeviation(
double a,
double b,
double c)
59 {this->SetStandardDeviations(a,b,c);}
66 vtkSetVector3Macro(RadiusFactors,
double);
68 this->SetRadiusFactors(f,f2,1.5);}
70 vtkGetVector3Macro(RadiusFactors,
double);
76 vtkSetMacro(Dimensionality,
int);
77 vtkGetMacro(Dimensionality,
int);
85 double StandardDeviations[3];
86 double RadiusFactors[3];
88 void ComputeKernel(
double *kernel,
int min,
int max,
double std);
90 void InternalRequestUpdateExtent(
int *,
int*);
91 void ExecuteAxis(
int axis,
vtkImageData *inData,
int inExt[6],
93 int *pcycle,
int target,
int *pcount,
int total,
99 int outExt[6],
int id);