/usr/include/vtk-7.1/vtkGaussianKernel.h is in libvtk7-dev 7.1.1+dfsg1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkGaussianKernel.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkGaussianKernel
* @brief a spherical Gaussian interpolation kernel
*
*
* vtkGaussianKernel is an interpolation kernel that simply returns the
* weights for all points found in the sphere defined by radius R. The
* weights are computed as: exp(-(s*r/R)^2) where r is the distance from the
* point to be interpolated to a neighboring point within R. The sharpness s
* simply affects the rate of fall off of the Gaussian. (A more general
* Gaussian kernel is available from vtkEllipsoidalGaussianKernel.)
*
* @warning
* The weights are normalized sp that SUM(Wi) = 1. If a neighbor point p
* precisely lies on the point to be interpolated, then the interpolated
* point takes on the values associated with p.
*
* @sa
* vtkPointInterpolator vtkInterpolationKernel vtkEllipsoidalGaussianKernel
* vtkVoronoiKernel vtkSPHKernel vtkShepardKernel
*/
#ifndef vtkGaussianKernel_h
#define vtkGaussianKernel_h
#include "vtkFiltersPointsModule.h" // For export macro
#include "vtkGeneralizedKernel.h"
class vtkIdList;
class vtkDoubleArray;
class VTKFILTERSPOINTS_EXPORT vtkGaussianKernel : public vtkGeneralizedKernel
{
public:
//@{
/**
* Standard methods for instantiation, obtaining type information, and printing.
*/
static vtkGaussianKernel *New();
vtkTypeMacro(vtkGaussianKernel,vtkGeneralizedKernel);
void PrintSelf(ostream& os, vtkIndent indent);
//@}
/**
* Initialize the kernel. Overload the superclass to set up internal
* computational values.
*/
virtual void Initialize(vtkAbstractPointLocator *loc, vtkDataSet *ds,
vtkPointData *pd);
// Re-use any superclass signatures that we don't override.
using vtkGeneralizedKernel::ComputeWeights;
/**
* Given a point x, a list of basis points pIds, and a probability
* weighting function prob, compute interpolation weights associated with
* these basis points. Note that basis points list pIds, the probability
* weighting prob, and the weights array are provided by the caller of the
* method, and may be dynamically resized as necessary. The method returns
* the number of weights (pIds may be resized in some cases). Typically
* this method is called after ComputeBasis(), although advanced users can
* invoke ComputeWeights() and provide the interpolation basis points pIds
* directly. The probably weighting prob are numbers 0<=prob<=1 which are
* multiplied against the interpolation weights before normalization. They
* are estimates of local confidence of weights. The prob may be NULL in
* which all probabilities are considered =1.
*/
virtual vtkIdType ComputeWeights(double x[3], vtkIdList *pIds,
vtkDoubleArray *prob, vtkDoubleArray *weights);
//@{
/**
* Set / Get the sharpness (i.e., falloff) of the Gaussian. By default
* Sharpness=2. As the sharpness increases the effects of distant points
* are reduced.
*/
vtkSetClampMacro(Sharpness,double,1,VTK_FLOAT_MAX);
vtkGetMacro(Sharpness,double);
//@}
protected:
vtkGaussianKernel();
~vtkGaussianKernel();
double Sharpness;
// Internal structure to reduce computation
double F2;
private:
vtkGaussianKernel(const vtkGaussianKernel&) VTK_DELETE_FUNCTION;
void operator=(const vtkGaussianKernel&) VTK_DELETE_FUNCTION;
};
#endif
|