Isis 3 Developer Reference
|
Class provides maximum likelihood estimation functions for robust parameter estimation, e.g. More...
#include <MaximumLikelihoodWFunctions.h>
Public Types | |
enum | Model { Huber, HuberModified, Welsch, Chen } |
The supported maximum likelihood estimation models. More... | |
Public Member Functions | |
MaximumLikelihoodWFunctions () | |
Sets up a maximumlikelihood estimation function with Huber model and default tweaking constant. More... | |
MaximumLikelihoodWFunctions (Model modelSelection) | |
Sets up a maximumlikelihood estimation function with specified model and default tweaking constant. More... | |
MaximumLikelihoodWFunctions (Model modelSelection, double tweakingConstant) | |
Sets up a maximumlikelihood estimation function with specified model and tweaking constant. More... | |
MaximumLikelihoodWFunctions (const MaximumLikelihoodWFunctions &other) | |
~MaximumLikelihoodWFunctions () | |
MaximumLikelihoodWFunctions & | operator= (const MaximumLikelihoodWFunctions &other) |
void | setModel (Model modelSelection) |
Allows the maximum likelihood model to be changed together and the default tweaking constant to be set. More... | |
void | setTweakingConstantDefault () |
Sets default tweaking constants based on the maximum likelihood estimation model being used. More... | |
void | setModel (Model modelSelection, double tweakingConstant) |
Allows the maximum likelihood model to be changed together with the tweaking constant. More... | |
void | setTweakingConstant (double tweakingConstant) |
Allows the tweaking constant to be changed without changing the maximum likelihood function. More... | |
Model | model () const |
Accessor method to return the MaximumLikelihoodWFunctions::Model enumeration. More... | |
double | tweakingConstant () const |
Returns the current tweaking constant. More... | |
double | sqrtWeightScaler (double residualZScore) |
This provides the scaler to the sqrt of the weight, which is very useful for building normal equations. More... | |
double | tweakingConstantQuantile () |
Suggest a quantile of the probility distribution of the residuals to use as the tweaking constants based on the maximum likelihood estimation model being used. More... | |
QString | weightedResidualCutoff () |
Method to return a string represtentation of the weighted residual cutoff (if it exists) for the MaximumLikelihoodWFunctions::Model. More... | |
QDataStream & | write (QDataStream &stream) const |
QDataStream & | read (QDataStream &stream) |
Static Public Member Functions | |
static QString | modelToString (Model model) |
Static method to return a string represtentation for a given MaximumLikelihoodWFunctions::Model enum. More... | |
static MaximumLikelihoodWFunctions::Model | stringToModel (QString modelName) |
Class provides maximum likelihood estimation functions for robust parameter estimation, e.g.
in bundle adjustment.
A maximum likelihood estimation W function provides a scheme for 're-weighting' observations so that measures with large residuals have reduced or negligible effect on the solution. There are many such functions available, a few have been programmed into this class. See enum Model documentation for specifics of the estimation models.
References: Zhangs, "Parameter Estimation: A Tutorial with Application to Conic Fitting" Koch, "Parameter Estimation and Hypothesis Testing in Linear Systems" 2nd edition, chapter 3.8 Manual of Photogrammetry, 5th edition, chapter 2.2 (particularly 2.2.6) Chen, "Robust Regression with Projection Based M-estimators"
The supported maximum likelihood estimation models.
Enumerator | |
---|---|
Huber | According to Zhang (Parameter Estimation: A Tutorial with application to conic fitting) "[Huber's] estimator is so satisfactory this is has been recommended for almost all situations; very rarely has it been found to be inferior to some other function. " Its one deficiency is the discontinuous second derivative which cause rare diffeculites. No measures are totally disregarded. http://research.microsoft.com/en-us/um/people/zhang/Papers/ZhangIVC-97-01.pdf |
HuberModified | A modification to Huber's method propsed by William J.J. Rey in Introduction to Robust and Quasi-Robust Statistical Methods. Springer, Berlin, Heidelberg, 1983. It has similiar properties to the Huber, but with a continuous second derivative. This comes at the cost of being somewhat more computationally expernsive. No measures are totally disregarded. http://research.microsoft.com/en-us/um/people/zhang/Papers/ZhangIVC-97-01.pdf |
Welsch | The Welsch method aggresively discounts measures with large resiudals. Residuals two times greater than the tweaking constant are all but ignored. This method can be risky to use (at least at first) because it does not gaurantee a unique solution. And if sufficient measures are effectively 'removed' by the weighting, the system can become singular. The manual of photogrammetry recommended using it for clean up after convergeance or near convergence had been optained with a more stable method (such as Huber's). http://research.microsoft.com/en-us/um/people/zhang/Papers/ZhangIVC-97-01.pdf |
Chen | The Chen method was found in "Robust Regression with Projection Based M-estimators" Chen, et. al., though Chen does not take credit as the author. It was of interest because he seemed to present its use as expected in systems with large numbers of outliers, and because of it's unique properties. It is exceptionally aggresive. Residuals less than the tweaking constant generally have MORE influence than in standard least squares (or any other estimation function I've studied), and residuals larger than the tweaking function are totaly discounted. |
Isis::MaximumLikelihoodWFunctions::MaximumLikelihoodWFunctions | ( | ) |
Sets up a maximumlikelihood estimation function with Huber model and default tweaking constant.
References Huber, and setModel().
Isis::MaximumLikelihoodWFunctions::MaximumLikelihoodWFunctions | ( | Model | modelSelection | ) |
Sets up a maximumlikelihood estimation function with specified model and default tweaking constant.
[in] | enum | Model modelSelection, the model to be used (see documentation for enum Model) |
References setModel().
Isis::MaximumLikelihoodWFunctions::MaximumLikelihoodWFunctions | ( | Model | modelSelection, |
double | tweakingConstant | ||
) |
Sets up a maximumlikelihood estimation function with specified model and tweaking constant.
[in] | enum | Model modelSelection, the model to be used (see documentation for enum Model) |
[in] | double | tweaking constant, exact meaning varies by model, but generally the larger the value the more influence larger resiudals have on the solution. As well as possibly the more measures are included in the solution. |
IsisProgrammerError | if tweakingConstant <= 0.0 |
References setModel(), and tweakingConstant().
Isis::MaximumLikelihoodWFunctions::MaximumLikelihoodWFunctions | ( | const MaximumLikelihoodWFunctions & | other | ) |
Isis::MaximumLikelihoodWFunctions::~MaximumLikelihoodWFunctions | ( | ) |
MaximumLikelihoodWFunctions::Model Isis::MaximumLikelihoodWFunctions::model | ( | ) | const |
Accessor method to return the MaximumLikelihoodWFunctions::Model enumeration.
Referenced by modelToString(), and read().
|
static |
Static method to return a string represtentation for a given MaximumLikelihoodWFunctions::Model enum.
model | Enumerated value for a MaximumLikelihoodWFunctions model. |
References _FILEINFO_, Chen, Huber, HuberModified, model(), Isis::IException::Programmer, Isis::toString(), and Welsch.
Referenced by Isis::BundleSolutionInfo::outputHeader(), Isis::BundleResults::save(), and Isis::BundleSettings::save().
MaximumLikelihoodWFunctions & Isis::MaximumLikelihoodWFunctions::operator= | ( | const MaximumLikelihoodWFunctions & | other | ) |
QDataStream & Isis::MaximumLikelihoodWFunctions::read | ( | QDataStream & | stream | ) |
References model().
Referenced by Isis::operator>>().
void Isis::MaximumLikelihoodWFunctions::setModel | ( | Model | modelSelection | ) |
Allows the maximum likelihood model to be changed together and the default tweaking constant to be set.
[in] enum Model modelSelection, the model to be used (see documentation for enum Model)
References setTweakingConstantDefault().
Referenced by MaximumLikelihoodWFunctions().
void Isis::MaximumLikelihoodWFunctions::setModel | ( | Model | modelSelection, |
double | tweakingConstant | ||
) |
Allows the maximum likelihood model to be changed together with the tweaking constant.
[in] | enum | Model modelSelection, the model to be used (see documentation for enum Model) |
[in] | tweakingConstant,exact | meaning varies by model, but generally the larger the value the more influence larger resiudals have on the solution. As well as possibly the more measures are included in the solution. |
IsisProgrammerError | if tweakingConstant <= 0.0 |
References setTweakingConstant(), and tweakingConstant().
void Isis::MaximumLikelihoodWFunctions::setTweakingConstant | ( | double | tweakingConstant | ) |
Allows the tweaking constant to be changed without changing the maximum likelihood function.
[in] | tweakingConstant,exact | meaning varies by model, but generally the larger the value the more influence larger resiudals have on the solution. As well as possiblly the more measures are included in the solution. |
IsisProgrammerError | if tweakingConstant <= 0.0 |
References _FILEINFO_, Isis::IException::Programmer, and tweakingConstant().
Referenced by setModel().
void Isis::MaximumLikelihoodWFunctions::setTweakingConstantDefault | ( | ) |
Sets default tweaking constants based on the maximum likelihood estimation model being used.
References Chen, Huber, HuberModified, and Welsch.
Referenced by setModel().
double Isis::MaximumLikelihoodWFunctions::sqrtWeightScaler | ( | double | residualZScore | ) |
This provides the scaler to the sqrt of the weight, which is very useful for building normal equations.
[in] | double | residualZScore, this the residual of a particulare measure in a particular iteration divided by the standard deviation (sigma) of that measure |
|
static |
References _FILEINFO_, Chen, Huber, HuberModified, Isis::IException::Programmer, and Welsch.
Referenced by Isis::JigsawSetupDialog::bundleSettings().
double Isis::MaximumLikelihoodWFunctions::tweakingConstant | ( | ) | const |
Returns the current tweaking constant.
Referenced by MaximumLikelihoodWFunctions(), Isis::BundleSolutionInfo::outputHeader(), setModel(), and setTweakingConstant().
double Isis::MaximumLikelihoodWFunctions::tweakingConstantQuantile | ( | ) |
Suggest a quantile of the probility distribution of the residuals to use as the tweaking constants based on the maximum likelihood estimation model being used.
References Chen, Huber, HuberModified, and Welsch.
QString Isis::MaximumLikelihoodWFunctions::weightedResidualCutoff | ( | ) |
Method to return a string represtentation of the weighted residual cutoff (if it exists) for the MaximumLikelihoodWFunctions::Model.
If no cutoff exists, the string "N/A" is returned.
Estimation model has not been set. |
References _FILEINFO_, Chen, Huber, HuberModified, Isis::IException::Programmer, Isis::toString(), and Welsch.
Referenced by Isis::BundleSolutionInfo::outputHeader().
QDataStream & Isis::MaximumLikelihoodWFunctions::write | ( | QDataStream & | stream | ) | const |
Referenced by Isis::operator<<().