casacore
|
#include <Gaussian3D.h>
Public Member Functions | |
Gaussian3D () | |
A functional for a rotated, 3D Gaussian. More... | |
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. More... | |
template<class W > | |
Gaussian3D (const Gaussian3D< W > &other) | |
virtual | ~Gaussian3D () |
Destructor. More... | |
Gaussian3D< T > & | operator= (const Gaussian3D< T > &other) |
Assignment operator. More... | |
virtual T | eval (typename Function< T >::FunctionArg x) const |
Evaluate the Gaussian at x . More... | |
virtual Function< T > * | clone () const |
Return a copy of this object from the heap. More... | |
virtual Function< typename FunctionTraits< T >::DiffType > * | cloneAD () const |
virtual Function< typename FunctionTraits< T >::BaseType > * | cloneNonAD () const |
Public Member Functions inherited from casacore::Gaussian3DParam< T > | |
Gaussian3DParam () | |
Constructs the three dimensional Gaussians. More... | |
Gaussian3DParam (T height, const Vector< T > ¢er, const Vector< T > &width, T theta, T phi) | |
Gaussian3DParam (T &height, T &xCenter, T &yCenter, T &zCenter, T &xWidth, T &yWidth, T &zWidth, T &theta, T &phi) | |
Gaussian3DParam (const Gaussian3DParam< T > &other) | |
Copy construcor. More... | |
Gaussian3DParam (const Gaussian3DParam< W > &other) | |
Gaussian3DParam< T > & | operator= (const Gaussian3DParam< T > &other) |
Copy assignment. More... | |
virtual | ~Gaussian3DParam () |
Destructor. More... | |
virtual const String & | name () const |
Give name of function. More... | |
virtual uInt | ndim () const |
Return dimensionality. More... | |
T | height () const |
Get or set the peak height of the Gaussian. More... | |
void | setHeight (const T &height) |
T | flux () const |
Get or set the total flux of the Gaussian. More... | |
void | setFlux (const T &flux) |
Vector< T > | center () const |
Get or cet the center coordinates of the Gaussian. More... | |
void | setCenter (const Vector< T > ¢er) |
T | xCenter () const |
void | setXcenter (const T &xcenter) |
T | yCenter () const |
void | setYcenter (const T &ycenter) |
T | zCenter () const |
void | setZcenter (const T &zcenter) |
Vector< T > | width () const |
Get or set the sigma-width of the Gaussian. More... | |
void | setWidth (const Vector< T > &width) |
void | setXwidth (const T &xwidth) |
T | xWidth () const |
void | setYwidth (const T &ywidth) |
T | yWidth () const |
void | setZwidth (const T &zwidth) |
T | zWidth () const |
T | theta () const |
Get or set the rotation angles of the Gaussian. More... | |
void | settheta (const T &sT) |
T | phi () const |
void | setphi (const T &sP) |
Public Member Functions inherited from casacore::Function< T, U > | |
Function () | |
Constructors. More... | |
Function (const uInt n) | |
Function (const Vector< T > &in) | |
Function (const FunctionParam< T > &other) | |
template<class W , class X > | |
Function (const Function< W, X > &other) | |
virtual | ~Function () |
Destructor. More... | |
uInt | nparameters () const |
Returns the number of parameters. More... | |
virtual U | eval (FunctionArg x) const =0 |
Evaluate the function object. More... | |
T & | operator[] (const uInt n) |
Manipulate the nth parameter (0-based) with no index check. More... | |
const T & | operator[] (const uInt n) const |
virtual U | operator() () const |
Evaluate this function object at x or at x, y . More... | |
virtual U | operator() (const ArgType &x) const |
virtual U | operator() (const Vector< ArgType > &x) const |
virtual U | operator() (FunctionArg x) const |
virtual U | operator() (const ArgType &x, const ArgType &y) const |
virtual U | operator() (const ArgType &x, const ArgType &y, const ArgType &z) const |
Bool & | mask (const uInt n) |
Manipulate the mask associated with the nth parameter (e.g. More... | |
const Bool & | mask (const uInt n) const |
const FunctionParam< T > & | parameters () const |
Return the parameter interface. More... | |
FunctionParam< T > & | parameters () |
const Vector< ArgType > & | argp () const |
Get arg_p and parset_p . More... | |
Bool | parsetp () const |
void | lockParam () |
Compiler cannot always find the correct 'const' version of parameter access. More... | |
void | unlockParam () |
virtual void | setMode (const RecordInterface &mode) |
get/set the function mode. More... | |
virtual void | getMode (RecordInterface &mode) const |
virtual Bool | hasMode () const |
return True if the implementing function supports a mode. More... | |
ostream & | print (ostream &os) const |
Print the function (i.e. More... | |
Public Member Functions inherited from casacore::Functional< FunctionTraits< T >::ArgType, T > | |
virtual | ~Functional () |
Destructor. More... | |
virtual T | operator() (const FunctionTraits< T >::ArgType &x) const=0 |
Map a Domain x into a Range y value. More... | |
Public Member Functions inherited from casacore::Functional< Vector< FunctionTraits< T >::ArgType >, T > | |
virtual | ~Functional () |
Destructor. More... | |
virtual T | operator() (const Vector< FunctionTraits< T >::ArgType > &x) const=0 |
Map a Domain x into a Range y value. More... | |
Private Member Functions | |
T | sq (T v) const |
AutoDiff does not have a square() function, so one is provided here. More... | |
Additional Inherited Members | |
Public Types inherited from casacore::Gaussian3DParam< T > | |
enum | |
Parameter handling for the functional for 3D Gaussian Class. More... | |
Public Types inherited from casacore::Function< T, U > | |
typedef FunctionTraits< T >::ArgType | ArgType |
typedef const ArgType * | FunctionArg |
Protected Member Functions inherited from casacore::Gaussian3DParam< T > | |
void | settrigvals () const |
Protected Attributes inherited from casacore::Gaussian3DParam< T > | |
T | fwhm2int |
T | stoT_p |
T | stoP_p |
T | cosT_p |
T | sinT_p |
T | cosP_p |
T | sinP_p |
T | cosTcosP_p |
T | cosTsinP_p |
T | sinTcosP_p |
T | sinTsinP_p |
Protected Attributes inherited from casacore::Function< T, U > | |
FunctionParam< T > | param_p |
The parameters and masks. More... | |
Vector< ArgType > | arg_p |
Aid for non-contiguous argument storage. More... | |
Bool | parset_p |
Indicate parameter written. More... | |
Bool | locked_p |
Indicate that parameters are expected to be locked from changing. More... | |
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.
The GaussianND class does not contain explicit derivatives and was insufficient for fitting 3D Gaussians to data.
Definition at line 143 of file Gaussian3D.h.
casacore::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.
casacore::Gaussian3D< T >::Gaussian3D | ( | T | height, |
const Vector< T > & | center, | ||
const Vector< T > & | width, | ||
T | theta, | ||
T | phi | ||
) |
casacore::Gaussian3D< T >::Gaussian3D | ( | T & | height, |
T & | xCenter, | ||
T & | yCenter, | ||
T & | zCenter, | ||
T & | xWidth, | ||
T & | yWidth, | ||
T & | zWidth, | ||
T & | theta, | ||
T & | phi | ||
) |
casacore::Gaussian3D< T >::Gaussian3D | ( | const Gaussian3D< T > & | other | ) |
Copy constructor.
|
inline |
Definition at line 165 of file Gaussian3D.h.
|
virtual |
Destructor.
|
virtual |
Return a copy of this object from the heap.
The caller is responsible for deleting this pointer.
Implements casacore::Function< T, U >.
|
inlinevirtual |
Reimplemented from casacore::Function< T, U >.
Definition at line 181 of file Gaussian3D.h.
|
inlinevirtual |
Reimplemented from casacore::Function< T, U >.
Definition at line 183 of file Gaussian3D.h.
|
virtual |
Evaluate the Gaussian at x
.
Gaussian3D<T>& casacore::Gaussian3D< T >::operator= | ( | const Gaussian3D< T > & | other | ) |
Assignment operator.
|
private |