IGeorefApprox.hpp
1 #pragma once
2 
3 #include <opals/IModuleBase.hpp>
4 #include <opals/Path.hpp>
5 #include <opals/Vector.hpp>
6 #include <opals/TrafPars3dAffine.hpp>
7 
8 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
9  #if defined _DEBUG && !defined OPALS_NO_DEBUG
10  #pragma comment(lib, "opalsGeorefApprox_d.lib")
11  #else
12  #pragma comment(lib, "opalsGeorefApprox.lib")
13  #endif
14 #endif
15 
16 namespace opals {
17 
18  namespace opts
19  {
20  /// Options of \ref ModuleGeorefApprox
21  namespace GeorefApprox
22  {
23  /// Options of \ref ModuleGeorefApprox
24  using Options =
25  IGroup< Names::_, false,
34  >;
35  }
36  }
37 
38  /// Improves the geo-referencing of an ALS flight block based on pairwise affine strip transformations (cf. Module LSM).
39  /** opalsGeorefApprox performs a strip adjustment based on relative pairwise affine
40  transformations as input. Each transformation is estimated by least-squares-matching
41  (opalsLSM). */
42  /// \see \ref ModuleGeorefApprox
43  class OPALS_API IGeorefApprox : virtual public IModuleBase
44  {
45 
46  public:
47  static IGeorefApprox* New();
48  static IGeorefApprox* New( IControlObject &controlObject );
49  static IGeorefApprox* New( const IModuleBase &parent );
50  static IGeorefApprox* New( const IModuleBase &parent, IControlObject &controlObject );
51 
52  virtual ~IGeorefApprox() {}
53 
54  /// \name Access to module-specific options.
55  ///@{
57  virtual Options& opts() = 0;
58  virtual const Options& opts() const = 0;
59  ///@}
60 
61  };
62 
63 };
Improves the geo-referencing of an ALS flight block based on pairwise affine strip transformations (c...
Definition: IGeorefApprox.hpp:43
Leaf that holds a read-only value.
Definition: IOption.hpp:63
Contains the public interface of OPALS.
Definition: AbsValueOrQuantile.hpp:8
Abstract base class of all opals modules.
Definition: IModuleBase.hpp:13
Interface for retrieving status and progress information from a module run.
Definition: c++_api/inc/opals/IControlObject.hpp:30
IGroup< Names::_, false, ILeaf< Names::obsTrafPars, false, Vector< TrafPars3dAffine > >, ILeaf< Names::outTrafPars, true, Vector< TrafPars3dAffine > >, ILeaf< Names::stripList, false, Vector< Path > >, ILeaf< Names::fixedStrip, false, Path >, ILeaf< Names::sigmaShift, false, double >, ILeaf< Names::maxIter, false, int >, ILeaf< Names::convThreshold, false, double >, ILeaf< Names::minWeight, false, double > > Options
Options of Module GeorefApprox.
Definition: IGeorefApprox.hpp:34
A group of options.
Definition: IOption.hpp:108