A fixed bandwidth spherical Gaussian kernel distribution. More...
#include <vpdl_kernel_gaussian_sfbw.h>
Public Types | |
typedef vpdt_field_default< T, n >::type | vector |
the data type used for vectors. | |
typedef vpdt_field_traits < vector >::matrix_type | matrix |
the data type used for matrices. | |
typedef vpdt_field_default< T, n >::type | field_type |
the data type used for vectors. | |
Public Member Functions | |
vpdl_kernel_gaussian_sfbw () | |
Default Constructor. | |
vpdl_kernel_gaussian_sfbw (const vcl_vector< vector > &samplez, T bandwid=T(1)) | |
Constructor - from sample centers and bandwidth (variance). | |
virtual vpdl_distribution< T, n > * | clone () const |
Create a copy on the heap and return base class pointer. | |
virtual T | density (const vector &pt) const |
Evaluate the unnormalized density at a point. | |
virtual T | prob_density (const vector &pt) const |
Evaluate the probability density at a point. | |
virtual T | gradient_density (const vector &pt, vector &g) const |
Compute the gradient of the unnormalized density at a point. | |
virtual T | cumulative_prob (const vector &pt) const |
Evaluate the cumulative distribution function at a point. | |
T | box_prob (const vector &min_pt, const vector &max_pt) const |
The probability of being in an axis-aligned box. | |
virtual void | compute_covar (matrix &covar) const |
Compute the covariance of the distribution. | |
virtual T | kernel_norm_const () const |
The normalization constant for the kernel. | |
T | bandwidth () const |
Access the bandwidth. | |
void | set_bandwidth (T b) |
Set the kernel bandwidth. | |
virtual T | norm_const () const |
The normalization constant for the density. | |
unsigned int | num_components () const |
Return the number of components in the mixture. | |
virtual unsigned int | dimension () const |
Return the run time dimension, which does not equal n when n==0 . | |
virtual void | add_sample (const vector &s) |
Add a new sample point. | |
virtual void | clear_samples () |
Remove all sample points. | |
virtual void | set_samples (const vcl_vector< vector > &samplez) |
Set the collection of sample points. | |
const vcl_vector< vector > & | samples () const |
Access the sample points. | |
virtual void | compute_mean (vector &mean) const |
Compute the mean of the distribution. | |
virtual T | log_prob_density (const vector &pt) const |
Evaluate the log probability density at a point. | |
virtual vector | inverse_cdf (const T &p) const |
Compute the inverse of the cumulative_prob() function. |
A fixed bandwidth spherical Gaussian kernel distribution.
The bandwidth is the standard deviation of the Gaussian kernel.
Definition at line 24 of file vpdl_kernel_gaussian_sfbw.h.
typedef vpdt_field_default<T,n>::type vpdl_distribution< T, n >::field_type [inherited] |
the data type used for vectors.
Reimplemented in vpdl_mixture_of< dist_t >.
Definition at line 36 of file vpdl_distribution.h.
typedef vpdt_field_traits<vector>::matrix_type vpdl_kernel_gaussian_sfbw< T, n >::matrix |
the data type used for matrices.
Reimplemented from vpdl_kernel_fbw_base< T, n >.
Definition at line 30 of file vpdl_kernel_gaussian_sfbw.h.
typedef vpdt_field_default<T,n>::type vpdl_kernel_gaussian_sfbw< T, n >::vector |
the data type used for vectors.
Reimplemented from vpdl_kernel_fbw_base< T, n >.
Definition at line 28 of file vpdl_kernel_gaussian_sfbw.h.
vpdl_kernel_gaussian_sfbw< T, n >::vpdl_kernel_gaussian_sfbw | ( | ) | [inline] |
Default Constructor.
Definition at line 33 of file vpdl_kernel_gaussian_sfbw.h.
vpdl_kernel_gaussian_sfbw< T, n >::vpdl_kernel_gaussian_sfbw | ( | const vcl_vector< vector > & | samplez, |
T | bandwid = T(1) |
||
) | [inline] |
Constructor - from sample centers and bandwidth (variance).
Definition at line 36 of file vpdl_kernel_gaussian_sfbw.h.
virtual void vpdl_kernel_base< T, n >::add_sample | ( | const vector & | s | ) | [inline, virtual, inherited] |
Add a new sample point.
Reimplemented in vpdl_kernel_vbw_base< T, n >.
Definition at line 53 of file vpdl_kernel_base.h.
T vpdl_kernel_fbw_base< T, n >::bandwidth | ( | ) | const [inline, inherited] |
Access the bandwidth.
Definition at line 120 of file vpdl_kernel_base.h.
T vpdl_kernel_gaussian_sfbw< T, n >::box_prob | ( | const vector & | min_pt, |
const vector & | max_pt | ||
) | const [inline, virtual] |
The probability of being in an axis-aligned box.
The box is defined by two points, the minimum and maximum. Reimplemented for efficiency since the axis are independent
Reimplemented from vpdl_distribution< T, n >.
Definition at line 138 of file vpdl_kernel_gaussian_sfbw.h.
virtual void vpdl_kernel_base< T, n >::clear_samples | ( | ) | [inline, virtual, inherited] |
Remove all sample points.
Reimplemented in vpdl_kernel_vbw_base< T, n >.
Definition at line 61 of file vpdl_kernel_base.h.
virtual vpdl_distribution<T,n>* vpdl_kernel_gaussian_sfbw< T, n >::clone | ( | ) | const [inline, virtual] |
Create a copy on the heap and return base class pointer.
Implements vpdl_distribution< T, n >.
Definition at line 41 of file vpdl_kernel_gaussian_sfbw.h.
virtual void vpdl_kernel_gaussian_sfbw< T, n >::compute_covar | ( | matrix & | covar | ) | const [inline, virtual] |
Compute the covariance of the distribution.
Implements vpdl_distribution< T, n >.
Definition at line 163 of file vpdl_kernel_gaussian_sfbw.h.
virtual void vpdl_kernel_base< T, n >::compute_mean | ( | vector & | mean | ) | const [inline, virtual, inherited] |
Compute the mean of the distribution.
Assume that each kernel has its mean at the sample point
Implements vpdl_distribution< T, n >.
Definition at line 80 of file vpdl_kernel_base.h.
virtual T vpdl_kernel_gaussian_sfbw< T, n >::cumulative_prob | ( | const vector & | pt | ) | const [inline, virtual] |
Evaluate the cumulative distribution function at a point.
This is the integral of the density function from negative infinity (in all dimensions) to the point in question
Implements vpdl_distribution< T, n >.
Definition at line 114 of file vpdl_kernel_gaussian_sfbw.h.
virtual T vpdl_kernel_gaussian_sfbw< T, n >::density | ( | const vector & | pt | ) | const [inline, virtual] |
Evaluate the unnormalized density at a point.
Implements vpdl_distribution< T, n >.
Definition at line 47 of file vpdl_kernel_gaussian_sfbw.h.
virtual unsigned int vpdl_kernel_base< T, n >::dimension | ( | ) | const [inline, virtual, inherited] |
Return the run time dimension, which does not equal n
when n==0
.
Implements vpdl_distribution< T, n >.
Definition at line 45 of file vpdl_kernel_base.h.
virtual T vpdl_kernel_gaussian_sfbw< T, n >::gradient_density | ( | const vector & | pt, |
vector & | g | ||
) | const [inline, virtual] |
Compute the gradient of the unnormalized density at a point.
g | the gradient vector |
Implements vpdl_distribution< T, n >.
Definition at line 82 of file vpdl_kernel_gaussian_sfbw.h.
vpdl_distribution< T, n >::vector vpdl_distribution< T, n >::inverse_cdf | ( | const T & | p | ) | const [virtual, inherited] |
Compute the inverse of the cumulative_prob() function.
The value of x: P(x'<x) = P for x' drawn from the distribution.
The value of x: P(x'<x) = P for x' drawn from the distribution. This is only valid for univariate distributions multivariate distributions will return -infinity
Definition at line 75 of file vpdl_distribution.txx.
virtual T vpdl_kernel_gaussian_sfbw< T, n >::kernel_norm_const | ( | ) | const [inline, virtual] |
The normalization constant for the kernel.
Implements vpdl_kernel_fbw_base< T, n >.
Definition at line 186 of file vpdl_kernel_gaussian_sfbw.h.
virtual T vpdl_distribution< T, n >::log_prob_density | ( | const vector & | pt | ) | const [inline, virtual, inherited] |
Evaluate the log probability density at a point.
Reimplemented in vpdl_gaussian_sphere< T, n >, vpdl_gaussian_indep< T, n >, and vpdl_gaussian< T, n >.
Definition at line 62 of file vpdl_distribution.h.
virtual T vpdl_kernel_fbw_base< T, n >::norm_const | ( | ) | const [inline, virtual, inherited] |
The normalization constant for the density.
When density() is multiplied by this value it becomes prob_density norm_const() is reciprocal of the integral of density over the entire field
Implements vpdl_distribution< T, n >.
Definition at line 131 of file vpdl_kernel_base.h.
unsigned int vpdl_kernel_base< T, n >::num_components | ( | ) | const [inline, virtual, inherited] |
Return the number of components in the mixture.
Implements vpdl_multi_cmp_dist< T, n >.
Definition at line 42 of file vpdl_kernel_base.h.
virtual T vpdl_kernel_gaussian_sfbw< T, n >::prob_density | ( | const vector & | pt | ) | const [inline, virtual] |
Evaluate the probability density at a point.
Reimplemented from vpdl_distribution< T, n >.
Definition at line 69 of file vpdl_kernel_gaussian_sfbw.h.
const vcl_vector<vector>& vpdl_kernel_base< T, n >::samples | ( | ) | const [inline, inherited] |
Access the sample points.
Definition at line 73 of file vpdl_kernel_base.h.
void vpdl_kernel_fbw_base< T, n >::set_bandwidth | ( | T | b | ) | [inline, inherited] |
Set the kernel bandwidth.
Definition at line 123 of file vpdl_kernel_base.h.
virtual void vpdl_kernel_base< T, n >::set_samples | ( | const vcl_vector< vector > & | samplez | ) | [inline, virtual, inherited] |
Set the collection of sample points.
Reimplemented in vpdl_kernel_vbw_base< T, n >.
Definition at line 67 of file vpdl_kernel_base.h.