Isis Developer Reference
|
Abstract base class for an observation in bundle adjustment. More...
#include <BundleObservation.h>
Public Member Functions | |
BundleObservation () | |
Constructs a BundleObservation initialized to a default state. | |
BundleObservation (BundleImageQsp image, QString observationNumber, QString instrumentId, BundleTargetBodyQsp bundleTargetBody) | |
Constructs a BundleObservation from an BundleImage, an instrument id, an observation number to assign to this BundleObservation, and a target body. | |
BundleObservation (const BundleObservation &src) | |
Creates a copy of another BundleObservation. | |
virtual | ~BundleObservation () |
Destructor. | |
virtual BundleObservation & | operator= (const BundleObservation &src) |
Assignment operator. | |
void | copy (const BundleObservation &src) |
virtual bool | setSolveSettings (BundleObservationSolveSettings solveSettings)=0 |
virtual void | append (const BundleImageQsp &value) |
Appends a BundleImage shared pointer to the BundleObservation. | |
BundleImageQsp | imageByCubeSerialNumber (QString cubeSerialNumber) |
Returns the BundleImage shared pointer associated with the given serial number. | |
void | setIndex (int n) |
Sets the index for the observation. | |
int | index () |
Accesses the observation's index. | |
QString | instrumentId () |
Accesses the instrument id. | |
double | vtpv () |
Compute vtpv, the weighted sum of squares of constrained image parameter residuals. | |
virtual LinearAlgebra::Vector & | parameterWeights () |
Accesses the solve parameter weights. | |
virtual LinearAlgebra::Vector & | parameterCorrections () |
Accesses the parameter corrections. | |
virtual LinearAlgebra::Vector & | aprioriSigmas () |
Accesses the a priori sigmas. | |
virtual LinearAlgebra::Vector & | adjustedSigmas () |
Accesses the adjusted sigmas. | |
virtual const BundleObservationSolveSettingsQsp | solveSettings ()=0 |
virtual int | numberParameters ()=0 |
virtual bool | applyParameterCorrections (LinearAlgebra::Vector corrections)=0 |
virtual void | bundleOutputString (std::ostream &fpOut, bool errorPropagation)=0 |
virtual QString | bundleOutputCSV (bool errorPropagation)=0 |
virtual QStringList | parameterList ()=0 |
virtual QStringList | imageNames () |
Access to image names for CorrelationMatrix to use. | |
virtual bool | computeTargetPartials (LinearAlgebra::Matrix &coeffTarget, BundleMeasure &measure, BundleSettingsQsp &bundleSettings, BundleTargetBodyQsp &bundleTargetBody)=0 |
virtual bool | computeImagePartials (LinearAlgebra::Matrix &coeffImage, BundleMeasure &measure)=0 |
virtual bool | computePoint3DPartials (LinearAlgebra::Matrix &coeffPoint3D, BundleMeasure &measure, SurfacePoint::CoordinateType coordType=SurfacePoint::Rectangular)=0 |
virtual bool | computeRHSPartials (LinearAlgebra::Vector &coeffRHS, BundleMeasure &measure)=0 |
virtual double | computeObservationValue (BundleMeasure &measure, double deltaVal)=0 |
Protected Attributes | |
QString | m_observationNumber |
The shared portion of the serial numbers of all images in the observation. | |
int | m_index |
Index of this observation in the set of observations. Map between cube serial number and BundleImage pointers. | |
QMap< QString, BundleImageQsp > | m_cubeSerialNumberToBundleImageMap |
QStringList | m_serialNumbers |
List of all cube serial numbers in observation. | |
QStringList | m_imageNames |
List of all cube names. | |
QString | m_instrumentId |
Spacecraft instrument id. | |
LinearAlgebra::Vector | m_weights |
Parameter weights. Cumulative parameter correction vector. | |
LinearAlgebra::Vector | m_corrections |
LinearAlgebra::Vector | m_aprioriSigmas |
A posteriori (adjusted) parameter sigmas. | |
LinearAlgebra::Vector | m_adjustedSigmas |
A posteriori (adjusted) parameter sigmas. | |
Abstract base class for an observation in bundle adjustment.
This class is the abstract base class that represents an observation in bundle adjustment. It handles operations related to the images in the observation, parameter corrections, and parameter uncertainties. It defines the interface for choosing observation parameters via BundleObservationSolveSettings. The partial computation apis required by the bundle adjustment are also defined but must be implemented by sub-classes.
Isis::BundleObservation::BundleObservation | ( | ) |
Constructs a BundleObservation initialized to a default state.
References m_adjustedSigmas, m_aprioriSigmas, m_corrections, m_imageNames, m_index, m_instrumentId, m_observationNumber, m_serialNumbers, and m_weights.
Isis::BundleObservation::BundleObservation | ( | BundleImageQsp | image, |
QString | observationNumber, | ||
QString | instrumentId, | ||
BundleTargetBodyQsp | bundleTargetBody ) |
Constructs a BundleObservation from an BundleImage, an instrument id, an observation number to assign to this BundleObservation, and a target body.
image | QSharedPointer to the primary image in the observation |
observationNumber | Observation number of the observation |
instrumentId | Id of the instrument for the observation |
bundleTargetBody | QSharedPointer to the target body of the observation |
References append(), instrumentId(), m_adjustedSigmas, m_aprioriSigmas, m_corrections, m_cubeSerialNumberToBundleImageMap, m_imageNames, m_index, m_instrumentId, m_observationNumber, m_serialNumbers, and m_weights.
Isis::BundleObservation::BundleObservation | ( | const BundleObservation & | src | ) |
Creates a copy of another BundleObservation.
src | Reference to the BundleObservation to copy |
References m_cubeSerialNumberToBundleImageMap, m_index, m_instrumentId, m_observationNumber, and m_serialNumbers.
|
virtual |
Destructor.
Contained BundleImages will remain until all shared pointers are deleted.
|
virtual |
Accesses the adjusted sigmas.
References m_adjustedSigmas.
|
virtual |
Appends a BundleImage shared pointer to the BundleObservation.
If the pointer is valid, then the BundleImage and its serial number will be inserted into the serial number to BundleImage map.
value | The BundleImage to be appended. |
References m_cubeSerialNumberToBundleImageMap.
Referenced by BundleObservation().
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
|
virtual |
Accesses the a priori sigmas.
References m_aprioriSigmas.
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
void Isis::BundleObservation::copy | ( | const BundleObservation & | src | ) |
BundleImageQsp Isis::BundleObservation::imageByCubeSerialNumber | ( | QString | cubeSerialNumber | ) |
Returns the BundleImage shared pointer associated with the given serial number.
If no BundleImage with that serial number is contained a NULL pointer is returned.
cubeSerialNumber | The serial number of the cube to be returned. |
References m_cubeSerialNumberToBundleImageMap.
|
virtual |
Access to image names for CorrelationMatrix to use.
References m_imageNames.
int Isis::BundleObservation::index | ( | ) |
Accesses the observation's index.
References m_index.
Referenced by Isis::IsisBundleObservation::applyParameterCorrections(), Isis::IsisBundleObservation::computeImagePartials(), and Isis::IsisBundleObservation::computeTargetPartials().
QString Isis::BundleObservation::instrumentId | ( | ) |
Accesses the instrument id.
References m_instrumentId.
Referenced by BundleObservation().
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
|
virtual |
Assignment operator.
Assigns the state of the source BundleObservation to this BundleObservation
BundleObservation | Reference to the source BundleObservation to assign from |
References m_cubeSerialNumberToBundleImageMap, m_instrumentId, m_observationNumber, and m_serialNumbers.
Referenced by Isis::IsisBundleObservation::operator=().
|
virtual |
Accesses the parameter corrections.
References m_corrections.
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
|
virtual |
Accesses the solve parameter weights.
References m_weights.
void Isis::BundleObservation::setIndex | ( | int | n | ) |
Sets the index for the observation.
n | Value to set the index of the observation to |
References m_index.
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
|
pure virtual |
Implemented in Isis::IsisBundleObservation, and Isis::CsmBundleObservation.
double Isis::BundleObservation::vtpv | ( | ) |
Compute vtpv, the weighted sum of squares of constrained image parameter residuals.
References m_corrections, m_weights, and vtpv().
Referenced by vtpv().
|
protected |
A posteriori (adjusted) parameter sigmas.
Referenced by adjustedSigmas(), BundleObservation(), BundleObservation(), Isis::IsisBundleObservation::bundleOutputCSV(), Isis::CsmBundleObservation::bundleOutputCSV(), Isis::IsisBundleObservation::bundleOutputString(), Isis::CsmBundleObservation::bundleOutputString(), Isis::IsisBundleObservation::setSolveSettings(), and Isis::CsmBundleObservation::setSolveSettings().
|
protected |
A posteriori (adjusted) parameter sigmas.
Referenced by aprioriSigmas(), BundleObservation(), BundleObservation(), Isis::IsisBundleObservation::bundleOutputCSV(), Isis::CsmBundleObservation::bundleOutputCSV(), Isis::IsisBundleObservation::bundleOutputString(), Isis::CsmBundleObservation::bundleOutputString(), Isis::IsisBundleObservation::setSolveSettings(), and Isis::CsmBundleObservation::setSolveSettings().
|
protected |
Referenced by Isis::IsisBundleObservation::applyParameterCorrections(), Isis::CsmBundleObservation::applyParameterCorrections(), BundleObservation(), BundleObservation(), Isis::IsisBundleObservation::bundleOutputCSV(), Isis::CsmBundleObservation::bundleOutputCSV(), Isis::IsisBundleObservation::bundleOutputString(), Isis::CsmBundleObservation::bundleOutputString(), parameterCorrections(), Isis::IsisBundleObservation::setSolveSettings(), Isis::CsmBundleObservation::setSolveSettings(), and vtpv().
|
protected |
Referenced by append(), BundleObservation(), BundleObservation(), imageByCubeSerialNumber(), and operator=().
|
protected |
List of all cube names.
Referenced by BundleObservation(), BundleObservation(), and imageNames().
|
protected |
Index of this observation in the set of observations. Map between cube serial number and BundleImage pointers.
Referenced by BundleObservation(), BundleObservation(), BundleObservation(), index(), and setIndex().
|
protected |
Spacecraft instrument id.
Referenced by BundleObservation(), BundleObservation(), BundleObservation(), instrumentId(), and operator=().
|
protected |
The shared portion of the serial numbers of all images in the observation.
Referenced by BundleObservation(), BundleObservation(), BundleObservation(), and operator=().
|
protected |
List of all cube serial numbers in observation.
Referenced by BundleObservation(), BundleObservation(), BundleObservation(), and operator=().
|
protected |
Parameter weights. Cumulative parameter correction vector.
Referenced by BundleObservation(), BundleObservation(), parameterWeights(), Isis::IsisBundleObservation::setSolveSettings(), Isis::CsmBundleObservation::setSolveSettings(), and vtpv().