IDBH.hpp
1 #pragma once
2 
3 #include <opals/IModuleBase.hpp>
4 #include <opals/Path.hpp>
5 #include <opals/String.hpp>
6 #include <opals/Vector.hpp>
7 #include <opals/DBHModel.hpp>
8 #include <opals/StemModel.hpp>
9 #include <opals/Calculator.hpp>
10 
11 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
12  #if defined _DEBUG && !defined OPALS_NO_DEBUG
13  #pragma comment(lib, "opalsDBH_d.lib")
14  #else
15  #pragma comment(lib, "opalsDBH.lib")
16  #endif
17 #endif
18 
19 namespace opals {
20 
21  namespace opts
22  {
23  /// Options of \ref ModuleDBH
24  namespace DBH
25  {
26  /// Options of \ref ModuleDBH
27  using Options =
28  IGroup< Names::_, false,
43  >;
44  }
45  }
46 
47  /// Estimate the Diameter at Breast Height (DBH) based on 3D point cloud data (ODM).
48  /** TODO:
49  More details on opalsDBH with much more words,
50  possibly on several lines. */
51  /// \see \ref ModuleDBH
52  class OPALS_API IDBH : virtual public IModuleBase
53  {
54 
55  public:
56  static IDBH* New();
57  static IDBH* New( IControlObject &controlObject );
58  static IDBH* New( const IModuleBase &parent );
59  static IDBH* New( const IModuleBase &parent, IControlObject &controlObject );
60 
61  virtual ~IDBH() {}
62 
63  /// \name Access to module-specific options.
64  ///@{
66  virtual Options& opts() = 0;
67  virtual const Options& opts() const = 0;
68  ///@}
69 
70  };
71 
72 };
Estimate the Diameter at Breast Height (DBH) based on 3D point cloud data (ODM).
Definition: IDBH.hpp:52
Leaf that holds a read-only value.
Definition: IOption.hpp:63
IGroup< Names::_, false, ILeaf< Names::inFile, false, Path >, ILeaf< Names::approxFile, false, Path >, ILeaf< Names::aFormat, false, String >, ILeaf< Names::filter, false, String >, ILeaf< Names::outFile, false, Path >, ILeaf< Names::weightFunc, false, String >, ILeaf< Names::geometryModel, false, DBHModel >, ILeaf< Names::patchLength, false, double >, ILeaf< Names::overlap, false, double >, ILeaf< Names::trace, false, Vector< bool > >, ILeaf< Names::searchRadius, false, Calculator< DM::ICalculator::ReadAccess::attributes, DM::ICalculator::WriteAccess::none > >, ILeaf< Names::outResults, true, Vector< StemModel > >, ILeaf< Names::byproduct, false, Path >, ILeaf< Names::tileSize, false, double > > Options
Options of Module DBH.
Definition: IDBH.hpp:43
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:108