Isis 3 Programmer Reference
BundleSettings.h
1 #ifndef BundleSettings_h
2 #define BundleSettings_h
3 
10 /* SPDX-License-Identifier: CC0-1.0 */
11 
12 // Qt library
13 #include <QList>
14 #include <QPair>
15 #include <QSharedPointer>
16 #include <QString>
17 
18 
19 
20 // ISIS library
21 #include "BundleTargetBody.h"
22 #include "BundleObservationSolveSettings.h"
23 #include "MaximumLikelihoodWFunctions.h"
24 #include "SpecialPixel.h"
25 #include "SurfacePoint.h"
26 #include "XmlStackedHandler.h"
27 
28 class QDataStream;
29 class QUuid;
30 class QXmlStreamWriter;
31 
32 
33 using namespace Isis;
34 
35 namespace Isis {
36  class FileName;
37  class Project;
38  class PvlObject;
40 
126  public:
127 
128  //=====================================================================//
129  //================ constructors, destructor, operators ================//
130  //=====================================================================//
131  BundleSettings();
132  BundleSettings(const BundleSettings &other);
133  BundleSettings(Project *project,
134  XmlStackedHandlerReader *xmlReader);
135 #if 0
136  BundleSettings(FileName xmlFile,
137  Project *project,
138  XmlStackedHandlerReader *xmlReader,
139  QObject *parent = NULL);
141  QObject *parent = NULL);
142 #endif
143  ~BundleSettings();
144  BundleSettings &operator=(const BundleSettings &other);
145 
146  void setValidateNetwork(bool validate);
147  bool validateNetwork() const;
148 
149 
150  //=====================================================================//
151  //============================ Solve options ==========================//
152  //=====================================================================//
153 
154  // mutators
155  void setSolveOptions(bool solveObservationMode = false,
156  bool updateCubeLabel = false,
157  bool errorPropagation = false,
158  bool solveRadius = false,
165  double multiplier = 1.0);
167  void setCreateInverseMatrix(bool createMatrix);
168 
169  // accessors
172  bool createInverseMatrix() const;
173  bool solveObservationMode() const;
174  bool solveRadius() const;
175  bool updateCubeLabel() const;
176  bool errorPropagation() const;
177  bool outlierRejection() const;
178  double outlierRejectionMultiplier() const;
179 // These sigmas are either for planetocentric lat/lon/radius or body-fixed x/y/z
180  double globalPointCoord1AprioriSigma() const;
181  double globalPointCoord2AprioriSigma() const;
182  double globalPointCoord3AprioriSigma() const;
183 
184  int numberSolveSettings() const;
185  BundleObservationSolveSettings observationSolveSettings(QString instrumentId) const;
188 
189 
190  //=====================================================================//
191  //======================- Convergence Criteria ========================//
192  //=====================================================================//
193 
198  Sigma0,
202  };
203 
204 
205  static ConvergenceCriteria stringToConvergenceCriteria(QString criteria);
206  static QString convergenceCriteriaToString(ConvergenceCriteria criteria);
208  double threshold,
209  int maximumIterations);
211  double convergenceCriteriaThreshold() const;
213 
214  //=====================================================================//
215  //================ Parameter Uncertainties (Weighting) ================//
216  //=====================================================================//
217  // mutators
218 // void setGlobalLatitudeAprioriSigma(double sigma);
219 // void setGlobalLongitudeAprioriSigma(double sigma);
220 // void setGlobalRadiiAprioriSigma(double sigma);
221 
222 
223  //=====================================================================//
224  //=============== Maximum Likelihood Estimation Options ===============//
225  //=====================================================================//
226 
232  Huber,
235  ModifiedHuber,
238  Welsch,
241  Chen
244  };
245 
246 
248  double cQuantile);
251 
252  //=====================================================================//
253  //========================= Self Calibration ==========================//
254  //=====================================================================//
255 
256 
257  //=====================================================================//
258  //============================== Target Body ==========================//
259  //=====================================================================//
260  // Note targeBody information is not currently serialized.
263 // bool solveTargetBodyPolePosition() const;
264 // static TargetRadiiSolveMethod stringToTargetRadiiOption(QString option);
265 // static QString targetRadiiOptionToString(TargetRadiiSolveMethod targetRadiiSolveMethod);
266  int numberTargetBodyParameters() const;
267  bool solveTargetBody() const;
268  bool solvePoleRA() const;
269  bool solvePoleRAVelocity() const;
270  bool solvePoleDec() const;
271  bool solvePoleDecVelocity() const;
272  bool solvePM() const;
273  bool solvePMVelocity() const;
274  bool solvePMAcceleration() const;
275  bool solveTriaxialRadii() const;
276  bool solveMeanRadius() const;
277 // void BundleSettings::setTargetBodySolveOptions(bool solveTargetBodyPolePosition,
278 
279 
280  //=====================================================================//
281  //================== Output Options ??? (from Jigsaw only)=============//
282  //=====================================================================//
284  void setSCPVLFilename(QString SCParamFilename);
285  QString outputFilePrefix() const;
286  void setCubeList(QString fileName);
287  QString cubeList() const;
288  QString SCPVLFilename() const;
289 
290  void save(QXmlStreamWriter &stream, const Project *project) const;
291 
292  private:
293  void init();
294 
295  //=====================================================================//
296  //============= Saving/Restoring a BundleSettings object ==============//
297  //=====================================================================//
298 
308  class XmlHandler : public XmlStackedHandler {
309  public:
310  XmlHandler(BundleSettings *bundleSettings,
311  Project *project);
312  XmlHandler(BundleSettings *bundleSettings);
313  ~XmlHandler();
314 
315  virtual bool startElement(const QString &namespaceURI,
316  const QString &localName,
317  const QString &qName,
318  const QXmlAttributes &atts);
319  virtual bool characters(const QString &ch);
320  virtual bool endElement(const QString &namespaceURI,
321  const QString &localName,
322  const QString &qName);
323  bool fatalError(const QXmlParseException &exception);
324 
325  private:
326  Q_DISABLE_COPY(XmlHandler);
327 
328  BundleSettings *m_xmlHandlerBundleSettings ;
329  Project *m_xmlHandlerProject; // TODO: does xml stuff need project???
330  QString m_xmlHandlerCharacters;
331  QList<BundleObservationSolveSettings *> m_xmlHandlerObservationSettings;
332  };
333 
334 
341  unsigned int indexFieldValue;
342  QString nameFieldValue;
344  };
345 
347  QString m_cubeList;
358  // Parameter Uncertainties (Weighting)
362 
363  // QList of observation solve settings
364  QList<BundleObservationSolveSettings> m_observationSolveSettings;
365 
366  // Convergence Criteria
376  // Maximum Likelihood Estimation Options
385 
386  // Self Calibration
387 
388  // Target Body
392  // Control Points
397  // Output Options
401  };
402  // typedefs
405 
406 
407 };
408 
410 
411 #endif
Isis::BundleSettings::globalPointCoord1AprioriSigma
double globalPointCoord1AprioriSigma() const
Retrieves global a priori sigma for 1st coordinate of points for this bundle.
Definition: BundleSettings.cpp:486
Isis::BundleSettings::save
void save(QXmlStreamWriter &stream, const Project *project) const
This method is used to write a BundleSettings object in an XML format.
Definition: BundleSettings.cpp:1050
Isis::BundleSettings::setObservationSolveOptions
void setObservationSolveOptions(QList< BundleObservationSolveSettings > obsSolveSettingsList)
Add the list of solve options for each observation.
Definition: BundleSettings.cpp:347
Isis::BundleSettings::ParameterCorrections
@ ParameterCorrections
All parameter corrections will be used to determine that the bundle adjustment has converged.
Definition: BundleSettings.h:200
Isis::BundleSettings::solveTargetBody
bool solveTargetBody() const
This method is used to determine whether the bundle adjustment will solve for target body.
Definition: BundleSettings.cpp:815
Isis::BundleSettings::Welsch
@ Welsch
Use a Welsch maximum likelihood model.
Definition: BundleSettings.h:238
Isis::PvlObject
Contains Pvl Groups and Pvl Objects.
Definition: PvlObject.h:61
Isis::BundleSettings::maximumLikelihoodEstimatorModels
QList< QPair< MaximumLikelihoodWFunctions::Model, double > > maximumLikelihoodEstimatorModels() const
Retrieves the list of maximum likelihood estimator (MLE) models with their corresponding C-Quantiles.
Definition: BundleSettings.cpp:749
Isis::BundleSettings::errorPropagation
bool errorPropagation() const
This method is used to determine whether this bundle adjustment will perform error propagation.
Definition: BundleSettings.cpp:448
QList
This is free and unencumbered software released into the public domain.
Definition: BoxcarCachingAlgorithm.h:13
Isis::BundleSettings::solveMeanRadius
bool solveMeanRadius() const
This method is used to determine whether the bundle adjustment will solve for target body mean radius...
Definition: BundleSettings.cpp:961
Isis::BundleSettings::m_createInverseMatrix
bool m_createInverseMatrix
Indicates whether to create the inverse matrix file.
Definition: BundleSettings.h:352
Isis::BundleSettings::XmlHandler::endElement
virtual bool endElement(const QString &namespaceURI, const QString &localName, const QString &qName)
Handle end tags for the BundleSettings serialized XML.
Definition: BundleSettings.cpp:1341
Isis::BundleSettings::m_bundleTargetBody
BundleTargetBodyQsp m_bundleTargetBody
A pointer to the target body settings and information.
Definition: BundleSettings.h:390
Isis::BundleSettings::globalPointCoord3AprioriSigma
double globalPointCoord3AprioriSigma() const
Retrieves the global a priori sigma 3rd coordinate of points for this bundle.
Definition: BundleSettings.cpp:506
Isis::BundleSettings::XmlHandler::startElement
virtual bool startElement(const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &atts)
Handle an XML start element.
Definition: BundleSettings.cpp:1175
Isis::BundleSettings::m_outlierRejectionMultiplier
double m_outlierRejectionMultiplier
The multiplier value for outlier rejection.
Definition: BundleSettings.h:355
Isis::BundleSettings::solveRadius
bool solveRadius() const
This method is used to determine whether this bundle adjustment will solve for radius.
Definition: BundleSettings.cpp:425
Isis::FileName
File name manipulation and expansion.
Definition: FileName.h:100
Isis::BundleSettings::setBundleTargetBody
void setBundleTargetBody(BundleTargetBodyQsp bundleTargetBody)
Sets the target body for the bundle adjustment.
Definition: BundleSettings.cpp:768
Isis::MaximumLikelihoodWFunctions::Model
Model
The supported maximum likelihood estimation models.
Definition: MaximumLikelihoodWFunctions.h:56
Isis::BundleSettings::XmlHandler::XmlHandler
XmlHandler(BundleSettings *bundleSettings, Project *project)
Create an XML Handler (reader) that can populate the BundleSettings class data.
Definition: BundleSettings.cpp:1145
Isis::BundleSettings::convergenceCriteriaThreshold
double convergenceCriteriaThreshold() const
Retrieves the convergence threshold to be used to solve the bundle adjustment.
Definition: BundleSettings.cpp:671
Isis::BundleSettings::setCubeList
void setCubeList(QString fileName)
BundleSettings::setCubeList.
Definition: BundleSettings.cpp:234
Isis::BundleSettings::convergenceCriteria
ConvergenceCriteria convergenceCriteria() const
Retrieves the convergence criteria to be used to solve the bundle adjustment.
Definition: BundleSettings.cpp:660
Isis::BundleSettings::m_outputFilePrefix
QString m_outputFilePrefix
The prefix for all output files.
Definition: BundleSettings.h:398
Isis::BundleSettings::m_solveObservationMode
bool m_solveObservationMode
Indicates whether to solve for observation mode.
Definition: BundleSettings.h:348
Isis::BundleSettings::bundleTargetBody
BundleTargetBodyQsp bundleTargetBody() const
Retrieves a pointer to target body information for the bundle adjustment.
Definition: BundleSettings.cpp:779
Isis::BundleSettings::solvePoleRA
bool solvePoleRA() const
This method is used to determine whether the bundle adjustment will solve for target body pole right ...
Definition: BundleSettings.cpp:833
Isis::BundleSettings::m_globalPointCoord1AprioriSigma
double m_globalPointCoord1AprioriSigma
The global a priori sigma for latitude or X.
Definition: BundleSettings.h:359
Isis::BundleSettings::operator=
BundleSettings & operator=(const BundleSettings &other)
Assignment operator to allow proper copying of the 'other' BundleSettings object to this one.
Definition: BundleSettings.cpp:169
Isis::BundleSettings::setCreateInverseMatrix
void setCreateInverseMatrix(bool createMatrix)
Turn the creation of the inverse correlation matrix file on or off.
Definition: BundleSettings.cpp:466
Isis::BundleSettings::numberTargetBodyParameters
int numberTargetBodyParameters() const
This method is used to determine whether the bundle adjustment will solve for target body pole positi...
Definition: BundleSettings.cpp:801
QSharedPointer< BundleTargetBody >
Isis::BundleSettings::setConvergenceCriteria
void setConvergenceCriteria(ConvergenceCriteria criteria, double threshold, int maximumIterations)
Set the convergence criteria options for the bundle adjustment.
Definition: BundleSettings.cpp:645
Isis::BundleSettings::addMaximumLikelihoodEstimatorModel
void addMaximumLikelihoodEstimatorModel(MaximumLikelihoodWFunctions::Model model, double cQuantile)
Add a maximum likelihood estimator (MLE) model to the bundle adjustment.
Definition: BundleSettings.cpp:727
Isis::XmlStackedHandlerReader
Manage a stack of content handlers for reading XML files.
Definition: XmlStackedHandlerReader.h:30
Isis::BundleSettings::validateNetwork
bool validateNetwork() const
This method is used to determine whether to validate the network before the bundle adjustment.
Definition: BundleSettings.cpp:223
Isis::BundleSettings::MaximumLikelihoodModelTableRecord
This struct is needed to write the m_maximumLikelihood variable as an HDF5 table.
Definition: BundleSettings.h:340
Isis::BundleSettings::Huber
@ Huber
Use a Huber maximum likelihood model.
Definition: BundleSettings.h:232
Isis::BundleSettings::solvePoleDec
bool solvePoleDec() const
This method is used to determine whether the bundle adjustment will solve for target body pole declin...
Definition: BundleSettings.cpp:865
Isis::Project
The main project for ipce.
Definition: Project.h:289
Isis::BundleSettings::Sigma0
@ Sigma0
The value of sigma0 will be used to determine that the bundle adjustment has converged.
Definition: BundleSettings.h:198
Isis::BundleSettings::m_maximumLikelihood
QList< QPair< MaximumLikelihoodWFunctions::Model, double > > m_maximumLikelihood
Model and C-Quantile for each of the three maximum likelihood estimations.
Definition: BundleSettings.h:384
Isis::BundleSettings::m_validateNetwork
bool m_validateNetwork
Indicates whether the network should be validated.
Definition: BundleSettings.h:346
Isis::BundleSettings::MaximumLikelihoodModelTableRecord::indexFieldValue
unsigned int indexFieldValue
The index of the TableRecord.???
Definition: BundleSettings.h:341
Isis::BundleSettings::XmlHandler::characters
virtual bool characters(const QString &ch)
Add a character from an XML element to the content handler.
Definition: BundleSettings.cpp:1326
Isis::BundleSettings::MaximumLikelihoodModel
MaximumLikelihoodModel
This enum defines the options for maximum likelihood estimation.
Definition: BundleSettings.h:230
Isis::BundleSettings::setSolveOptions
void setSolveOptions(bool solveObservationMode=false, bool updateCubeLabel=false, bool errorPropagation=false, bool solveRadius=false, SurfacePoint::CoordinateType coordTypeBundle=SurfacePoint::Latitudinal, SurfacePoint::CoordinateType coordTypeReports=SurfacePoint::Latitudinal, double globalPointCoord1AprioriSigma=Isis::Null, double globalPointCoord2AprioriSigma=Isis::Null, double globalPointCoord3AprioriSigma=Isis::Null)
Set the solve options for the bundle adjustment.
Definition: BundleSettings.cpp:269
Isis::BundleSettings::m_solveRadius
bool m_solveRadius
Indicates whether to solve for point radii.
Definition: BundleSettings.h:349
Isis::BundleSettings::stringToConvergenceCriteria
static ConvergenceCriteria stringToConvergenceCriteria(QString criteria)
Converts the given string value to a BundleSettings::ConvergenceCriteria enumeration.
Definition: BundleSettings.cpp:601
Isis::BundleSettings::m_globalPointCoord3AprioriSigma
double m_globalPointCoord3AprioriSigma
The global a priori sigma for radius or Z.
Definition: BundleSettings.h:361
Isis::BundleSettings::MaximumLikelihoodModelTableRecord::quantileFieldValue
double quantileFieldValue
The quantile of the TableRecord.???
Definition: BundleSettings.h:343
Isis::BundleSettings::XmlHandler::~XmlHandler
~XmlHandler()
Destroys BundleSettings::XmlHandler object.
Definition: BundleSettings.cpp:1156
Isis::BundleSettings::m_convergenceCriteriaMaximumIterations
int m_convergenceCriteriaMaximumIterations
Maximum number of iterations before quitting the bundle adjustment if it has not yet converged to the...
Definition: BundleSettings.h:372
Isis::SurfacePoint::CoordinateType
CoordinateType
Defines the coordinate typ, units, and coordinate index for some of the output methods.
Definition: SurfacePoint.h:139
Isis::BundleSettings::ConvergenceCriteria
ConvergenceCriteria
This enum defines the options for the bundle adjustment's convergence.
Definition: BundleSettings.h:197
Isis::BundleSettings::m_convergenceCriteria
ConvergenceCriteria m_convergenceCriteria
Enumeration used to indicate what criteria to use to determine bundle adjustment convergence.
Definition: BundleSettings.h:367
Isis::BundleSettings::~BundleSettings
~BundleSettings()
Destroys the BundleSettings object.
Definition: BundleSettings.cpp:153
Isis::BundleSettings::solvePMAcceleration
bool solvePMAcceleration() const
This method is used to determine whether the bundle adjustment will solve for target body prime merid...
Definition: BundleSettings.cpp:929
Isis::BundleSettings::outputFilePrefix
QString outputFilePrefix() const
Retrieve the output file prefix.
Definition: BundleSettings.cpp:1036
Isis::BundleSettings::m_updateCubeLabel
bool m_updateCubeLabel
Indicates whether to update cubes.
Definition: BundleSettings.h:350
Isis::BundleSettings::outlierRejectionMultiplier
double outlierRejectionMultiplier() const
Retrieves the outlier rejection multiplier for the bundle adjustment.
Definition: BundleSettings.cpp:476
Isis::BundleSettingsQsp
QSharedPointer< BundleSettings > BundleSettingsQsp
Definition for a BundleSettingsQsp, a shared pointer to a BundleSettings object.
Definition: BundleSettings.h:404
Isis::BundleSettings::controlPointCoordTypeReports
SurfacePoint::CoordinateType controlPointCoordTypeReports() const
Indicates the control point coordinate type for reports.
Definition: BundleSettings.cpp:361
Isis::BundleSettings::solvePoleDecVelocity
bool solvePoleDecVelocity() const
This method is used to determine whether the bundle adjustment will solve for target body pole declin...
Definition: BundleSettings.cpp:881
Isis::BundleSettings::BundleSettings
BundleSettings()
Constructs a BundleSettings object.
Definition: BundleSettings.cpp:39
Isis::BundleSettings::m_globalPointCoord2AprioriSigma
double m_globalPointCoord2AprioriSigma
The global a priori sigma for longitude or Y.
Definition: BundleSettings.h:360
Isis::BundleSettings::m_errorPropagation
bool m_errorPropagation
Indicates whether to perform error propagation.
Definition: BundleSettings.h:351
Isis::BundleSettings::numberSolveSettings
int numberSolveSettings() const
Retrieves the number of observation solve settings.
Definition: BundleSettings.cpp:517
Isis::BundleSettings::m_cpCoordTypeBundle
SurfacePoint::CoordinateType m_cpCoordTypeBundle
Indicates the coordinate type used for control points in the bundle adjustment.
Definition: BundleSettings.h:395
Isis::BundleSettings::setOutlierRejection
void setOutlierRejection(bool outlierRejection, double multiplier=1.0)
Set the outlier rejection options for the bundle adjustment.
Definition: BundleSettings.cpp:329
Isis::BundleSettings
Container class for BundleAdjustment settings.
Definition: BundleSettings.h:125
Isis::BundleSettings::XmlHandler::fatalError
bool fatalError(const QXmlParseException &exception)
Format an error message indicating a problem with BundleSettings.
Definition: BundleSettings.cpp:1367
Isis::BundleSettings::convergenceCriteriaMaximumIterations
int convergenceCriteriaMaximumIterations() const
Retrieves the maximum number of iterations allowed to solve the bundle adjustment.
Definition: BundleSettings.cpp:684
Isis::BundleSettings::m_convergenceCriteriaThreshold
double m_convergenceCriteriaThreshold
Tolerance value corresponding to the selected convergence criteria.
Definition: BundleSettings.h:370
Isis::BundleSettings::globalPointCoord2AprioriSigma
double globalPointCoord2AprioriSigma() const
Retrieves the global a priori sigma for 2nd coordinate of points for this bundle.
Definition: BundleSettings.cpp:496
Isis::BundleSettings::setValidateNetwork
void setValidateNetwork(bool validate)
Sets the internal flag to indicate whether to validate the network before the bundle adjustment.
Definition: BundleSettings.cpp:208
Isis::Null
const double Null
Value for an Isis Null pixel.
Definition: SpecialPixel.h:95
Isis::BundleSettings::XmlHandler
This class is needed to read/write BundleSettings from/to an XML formateed file.
Definition: BundleSettings.h:308
Isis::BundleSettings::ModifiedHuber
@ ModifiedHuber
Use a modified Huber maximum likelihood model.
Definition: BundleSettings.h:235
Isis::BundleSettings::createInverseMatrix
bool createInverseMatrix() const
Indicates if the settings will allow the inverse correlation matrix to be created.
Definition: BundleSettings.cpp:391
Isis::BundleSettings::updateCubeLabel
bool updateCubeLabel() const
This method is used to determine whether this bundle adjustment will update the cube labels.
Definition: BundleSettings.cpp:437
Isis::BundleSettings::init
void init()
Set Default vales for a BundleSettings object.
Definition: BundleSettings.cpp:50
Isis::BundleSettings::NoMaximumLikelihoodEstimator
@ NoMaximumLikelihoodEstimator
Do not use a maximum likelihood model.
Definition: BundleSettings.h:231
Isis::XmlStackedHandler
XML Handler that parses XMLs in a stack-oriented way.
Definition: XmlStackedHandler.h:118
Isis::BundleSettings::solvePMVelocity
bool solvePMVelocity() const
This method is used to determine whether the bundle adjustment will solve for target body prime merid...
Definition: BundleSettings.cpp:913
Isis::BundleSettings::m_cpCoordTypeReports
SurfacePoint::CoordinateType m_cpCoordTypeReports
Indicates the coordinate type for outputting control points in reports.
Definition: BundleSettings.h:393
Isis::BundleSettings::m_outlierRejection
bool m_outlierRejection
Indicates whether to perform automatic outlier detection/rejection.
Definition: BundleSettings.h:353
Isis::BundleSettings::solveTriaxialRadii
bool solveTriaxialRadii() const
This method is used to determine whether the bundle adjustment will solve for target body triaxial ra...
Definition: BundleSettings.cpp:945
Isis::BundleObservationSolveSettings
This class is used to modify and manage solve settings for 1 to many BundleObservations.
Definition: BundleObservationSolveSettings.h:82
Isis::SurfacePoint::Latitudinal
@ Latitudinal
Planetocentric latitudinal (lat/lon/rad) coordinates.
Definition: SurfacePoint.h:140
Isis::BundleSettings::solveObservationMode
bool solveObservationMode() const
This method is used to determine whether this bundle adjustment will solve for observation mode.
Definition: BundleSettings.cpp:414
Isis::BundleSettings::observationSolveSettings
QList< BundleObservationSolveSettings > observationSolveSettings() const
Retrieves solve settings for the observation corresponding to the given index.
Definition: BundleSettings.cpp:576
Isis::BundleSettings::cubeList
QString cubeList() const
BundleSettings::cubeList.
Definition: BundleSettings.cpp:244
Isis::BundleSettings::convergenceCriteriaToString
static QString convergenceCriteriaToString(ConvergenceCriteria criteria)
Converts the given BundleSettings::ConvergenceCriteria enumeration to a string.
Definition: BundleSettings.cpp:625
QObject
Isis::validate
bool validate(const NaifVertex &v)
Verifies that the given NaifVector or NaifVertex is 3 dimensional.
Definition: NaifDskApi.cpp:28
Isis::BundleSettings::MaximumLikelihoodModelTableRecord::nameFieldValue
QString nameFieldValue
The model name of the TableRecord.???
Definition: BundleSettings.h:342
Isis::BundleSettings::outlierRejection
bool outlierRejection() const
This method is used to determine whether outlier rejection will be performed on this bundle adjustmen...
Definition: BundleSettings.cpp:403
Isis::BundleSettings::solvePoleRAVelocity
bool solvePoleRAVelocity() const
This method is used to determine whether the bundle adjustment will solve for target body pole right ...
Definition: BundleSettings.cpp:849
Isis::BundleSettings::Chen
@ Chen
Use a Chen maximum likelihood model.
Definition: BundleSettings.h:241
Isis::BundleSettings::solvePM
bool solvePM() const
This method is used to determine whether the bundle adjustment will solve for target body prime merid...
Definition: BundleSettings.cpp:897
Isis::BundleSettings::m_solveTargetBody
bool m_solveTargetBody
Indicates whether to solve for target body.
Definition: BundleSettings.h:389
Isis::BundleSettings::setOutputFilePrefix
void setOutputFilePrefix(QString outputFilePrefix)
Set the output file prefix for the bundle adjustment.
Definition: BundleSettings.cpp:1022
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Q_DECLARE_METATYPE
Q_DECLARE_METATYPE(Isis::PlotWindow *)
We have plot windows as QVariant data types, so here it's enabled.
Isis::BundleSettings::controlPointCoordTypeBundle
SurfacePoint::CoordinateType controlPointCoordTypeBundle() const
Indicates the control point coordinate type for the actual bundle adjust.
Definition: BundleSettings.cpp:375