IDSM.hpp
1 #pragma once
2 
3 #include <opals/IModuleBase.hpp>
4 #include <opals/Path.hpp>
5 #include <opals/Vector.hpp>
6 #include <opals/GridLimit.hpp>
7 #include <opals/NoDataType.hpp>
8 
9 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
10  #if defined _DEBUG && !defined OPALS_NO_DEBUG
11  #pragma comment(lib, "opalsDSM_d.lib")
12  #else
13  #pragma comment(lib, "opalsDSM.lib")
14  #endif
15 #endif
16 
17 namespace opals {
18 
19  namespace opts
20  {
21  /// Options of \ref ModuleDSM
22  namespace DSM
23  {
24  /// Options of \ref ModuleDSM
25  using Options =
26  IGroup< Names::_,
40  >;
41  }
42  }
43 
44  /// Calculates a land cover dependent DSM raster model based on the approach of Hollaus et. al. (2010).
45  /** TODO:
46  More details on opalsDSM with much more words,
47  possibly on several lines. */
48  /// \see \ref ModuleDSM
49  class OPALS_API IDSM : virtual public IModuleBase
50  {
51 
52  public:
53  static IDSM* New();
54  static IDSM* New( IControlObject &controlObject );
55  static IDSM* New( const IModuleBase &parent );
56  static IDSM* New( const IModuleBase &parent, IControlObject &controlObject );
57 
58  virtual ~IDSM() {}
59 
60  /// \name Access to module-specific options.
61  ///@{
63  Options& opts() override = 0;
64  const Options& opts() const override = 0;
65  ///@}
66 
67  };
68 
69 };
Calculates a land cover dependent DSM raster model based on the approach of Hollaus et....
Definition: IDSM.hpp:49
IGroup< Names::_, IValue< Names::inFile, false, Vector< Path > >, IValue< Names::outFile, false, Vector< Path > >, IValue< Names::oFormat, false, String >, IValue< Names::tileSize, false, unsigned >, IValue< Names::gridSize, false, double >, IValue< Names::neighbours, false, int >, IValue< Names::searchRadius, false, double >, IValue< Names::maxSigma, false, float >, IValue< Names::filter, false, String >, IValue< Names::limit, false, GridLimit >, IValue< Names::noData, false, NoDataType >, IValue< Names::multiBand, false, bool >, IValue< Names::extrapolationCheck, false, bool > > Options
Options of Module DSM.
Definition: IDSM.hpp:40
A leaf that holds a value.
Definition: IOption.hpp:62
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
A group of options.
Definition: IOption.hpp:136