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. More... | |
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. More... | |
BundleObservation (const BundleObservation &src) | |
Creates a copy of another BundleObservation. More... | |
virtual | ~BundleObservation () |
Destructor. More... | |
virtual BundleObservation & | operator= (const BundleObservation &src) |
Assignment operator. More... | |
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. More... | |
BundleImageQsp | imageByCubeSerialNumber (QString cubeSerialNumber) |
Returns the BundleImage shared pointer associated with the given serial number. More... | |
void | setIndex (int n) |
Sets the index for the observation. More... | |
int | index () |
Accesses the observation's index. More... | |
QString | instrumentId () |
Accesses the instrument id. More... | |
virtual LinearAlgebra::Vector & | parameterWeights () |
Accesses the solve parameter weights. More... | |
virtual LinearAlgebra::Vector & | parameterCorrections () |
Accesses the parameter corrections. More... | |
virtual LinearAlgebra::Vector & | aprioriSigmas () |
Accesses the a priori sigmas. More... | |
virtual LinearAlgebra::Vector & | adjustedSigmas () |
Accesses the adjusted sigmas. More... | |
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. More... | |
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. More... | |
int | m_index |
Index of this observation in the set of observations. Map between cube serial number and BundleImage pointers. More... | |
QMap< QString, BundleImageQsp > | m_cubeSerialNumberToBundleImageMap |
QStringList | m_serialNumbers |
List of all cube serial numbers in observation. More... | |
QStringList | m_imageNames |
List of all cube names. More... | |
QString | m_instrumentId |
Spacecraft instrument id. More... | |
LinearAlgebra::Vector | m_weights |
Parameter weights. Cumulative parameter correction vector. More... | |
LinearAlgebra::Vector | m_corrections |
LinearAlgebra::Vector | m_aprioriSigmas |
A posteriori (adjusted) parameter sigmas. More... | |
LinearAlgebra::Vector | m_adjustedSigmas |
A posteriori (adjusted) parameter sigmas. More... | |
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.
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 |
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.
|
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. |
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
|
virtual |
Accesses the a priori sigmas.
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
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. |
|
virtual |
Access to image names for CorrelationMatrix to use.
int Isis::BundleObservation::index | ( | ) |
Accesses the observation's index.
Referenced by Isis::IsisBundleObservation::applyParameterCorrections(), Isis::IsisBundleObservation::computeImagePartials(), and Isis::IsisBundleObservation::computeTargetPartials().
QString Isis::BundleObservation::instrumentId | ( | ) |
Accesses the instrument id.
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
|
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.
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
|
virtual |
Accesses the solve parameter weights.
void Isis::BundleObservation::setIndex | ( | int | n | ) |
Sets the index for the observation.
n | Value to set the index of the observation to |
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
|
pure virtual |
Implemented in Isis::CsmBundleObservation, and Isis::IsisBundleObservation.
|
protected |
A posteriori (adjusted) parameter sigmas.
Referenced by 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 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(), Isis::IsisBundleObservation::bundleOutputCSV(), Isis::CsmBundleObservation::bundleOutputCSV(), Isis::IsisBundleObservation::bundleOutputString(), Isis::CsmBundleObservation::bundleOutputString(), Isis::IsisBundleObservation::setSolveSettings(), and Isis::CsmBundleObservation::setSolveSettings().
|
protected |
Referenced by BundleObservation(), and operator=().
|
protected |
List of all cube names.
|
protected |
Index of this observation in the set of observations. Map between cube serial number and BundleImage pointers.
Referenced by BundleObservation().
|
protected |
Spacecraft instrument id.
Referenced by BundleObservation(), and operator=().
|
protected |
The shared portion of the serial numbers of all images in the observation.
Referenced by BundleObservation(), and operator=().
|
protected |
List of all cube serial numbers in observation.
Referenced by BundleObservation(), and operator=().
|
protected |
Parameter weights. Cumulative parameter correction vector.
Referenced by Isis::IsisBundleObservation::setSolveSettings(), and Isis::CsmBundleObservation::setSolveSettings().