casa
$Rev:20696$
|
A three dimensional Gaussian class. More...
#include <Gaussian3D.h>
Public Member Functions | |
Gaussian3D () | |
A functional for a rotated, 3D Gaussian. | |
Gaussian3D (T height, const Vector< T > ¢er, const Vector< T > &width, T theta, T phi) | |
Gaussian3D (T &height, T &xCenter, T &yCenter, T &zCenter, T &xWidth, T &yWidth, T &zWidth, T &theta, T &phi) | |
Gaussian3D (const Gaussian3D< T > &other) | |
Copy constructor. | |
template<class W > | |
Gaussian3D (const Gaussian3D< W > &other) | |
virtual | ~Gaussian3D () |
Destructor. | |
Gaussian3D< T > & | operator= (const Gaussian3D< T > &other) |
Assignment operator. | |
virtual T | eval (typename Function< T >::FunctionArg x) const |
Evaluate the Gaussian at x . | |
virtual Function< T > * | clone () const |
Return a copy of this object from the heap. | |
virtual Function< typename FunctionTraits< T >::DiffType > * | cloneAD () const |
virtual Function< typename FunctionTraits< T >::BaseType > * | cloneNonAD () const |
Private Member Functions | |
T | sq (T v) const |
A three dimensional Gaussian class.
Public interface
A Gaussian3D functional is designed exclusively for calculating a Gaussian (or Normal) distribution in three dimensions. Other classes exist for calculating these functions in one ( Gaussian1D ), two ( Gaussian2D ), and N ( GaussianND ) dimensions.
A Gaussian3D
is described by a height, center, and width, and position angles. Its fundamental operation is evaluating itself at some (x,y,z)
coordinate. Its parameters (height, center and width, position angles) may be changed at run time.
The width of the Gaussian is now specified in terms of the full width at half maximum (FWHM), like the 2D and 1D Gaussian functional classes.
The three axis values refer to the x, y, and z axes, and unlike with the 2D Gaussian any of the three axes may be the longest; instead, the position angles are restricted. The first position angle, theta, is the longitudinal angle, referring to the rotation (counterclockwise) around the z-axis. The second, phi, is the latidudinal angle, referring to the rotation around the theta-rotated y axis. The domain of both angles is -pi/4 < A < pi/4, although the angles are not constrained when fitting and can be set outside the domain by setting the parameters directly using Functional operator[]. (Note that the use of theta and phi corresponds to the mathematics convention for these angles, not the physics convention.)
The parameter interface (see Gaussian3DParam class), is used to provide an interface to the Fitting classes.
There are 9 parameters that are used to describe the Gaussian:
height
member function. xCenter
member function. yCenter
member function. zCenter
member function. An enumeration for the parameter index is provided, enabling the setting and reading of parameters with the []
operator. The mask()
methods can be used to check and set the parameter masks.
Gaussian3D<Double> g(9.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0); Vector<Double> x(3); x(0) = 1.0; x(1) = 0.5; x(2) = 0.0 cout << "g(" << x(0) << "," << x(1) << "," << x(2) << ")=" << g(x) << endl;
The GaussianND class does not contain explicit derivatives and was insufficient for fitting 3D Gaussians to data.
Definition at line 145 of file Gaussian3D.h.
casa::Gaussian3D< T >::Gaussian3D | ( | ) |
A functional for a rotated, 3D Gaussian.
Similar to Gaussian2D, but the xWidth, yWidth, and zWidth parameters are not adjusted for FWHM; they are identical to the parameters used in the function.
Constructs the three-dimensional Gaussians. Defaults: height = 1, center = {0,0,0}, width = {1,1,1}, theta = phi = 0. The center and width vectors must have three elements.
casa::Gaussian3D< T >::Gaussian3D | ( | T | height, |
const Vector< T > & | center, | ||
const Vector< T > & | width, | ||
T | theta, | ||
T | phi | ||
) |
casa::Gaussian3D< T >::Gaussian3D | ( | T & | height, |
T & | xCenter, | ||
T & | yCenter, | ||
T & | zCenter, | ||
T & | xWidth, | ||
T & | yWidth, | ||
T & | zWidth, | ||
T & | theta, | ||
T & | phi | ||
) |
casa::Gaussian3D< T >::Gaussian3D | ( | const Gaussian3D< T > & | other | ) |
Copy constructor.
casa::Gaussian3D< T >::Gaussian3D | ( | const Gaussian3D< W > & | other | ) | [inline] |
Definition at line 167 of file Gaussian3D.h.
virtual casa::Gaussian3D< T >::~Gaussian3D | ( | ) | [virtual] |
Destructor.
virtual Function<T>* casa::Gaussian3D< T >::clone | ( | ) | const [virtual] |
Return a copy of this object from the heap.
The caller is responsible for deleting this pointer.
Implements casa::Function< T >.
virtual Function<typename FunctionTraits<T>::DiffType>* casa::Gaussian3D< T >::cloneAD | ( | ) | const [inline, virtual] |
Reimplemented from casa::Function< T >.
Definition at line 183 of file Gaussian3D.h.
virtual Function<typename FunctionTraits<T>::BaseType>* casa::Gaussian3D< T >::cloneNonAD | ( | ) | const [inline, virtual] |
Reimplemented from casa::Function< T >.
Definition at line 185 of file Gaussian3D.h.
virtual T casa::Gaussian3D< T >::eval | ( | typename Function< T >::FunctionArg | x | ) | const [virtual] |
Evaluate the Gaussian at x
.
Gaussian3D<T>& casa::Gaussian3D< T >::operator= | ( | const Gaussian3D< T > & | other | ) |
Assignment operator.
T casa::Gaussian3D< T >::sq | ( | T | v | ) | const [private] |