ITerrainFilter.hpp
1 #pragma once
2 
3 #include <opals/IModuleBase.hpp>
4 #include <opals/String.hpp>
5 #include <opals/Path.hpp>
6 #include <opals/Vector.hpp>
7 #include <DM/StatFeature.hpp>
8 #include <opals/TerrainFilterMethod.hpp>
9 #include <opals/GridLimit.hpp>
10 
11 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
12  #if defined _DEBUG && !defined OPALS_NO_DEBUG
13  #pragma comment(lib, "opalsTerrainFilter_d.lib")
14  #else
15  #pragma comment(lib, "opalsTerrainFilter.lib")
16  #endif
17 #endif
18 
19 namespace opals
20 {
21 
22  namespace opts
23  {
24  /// Options of \ref ModuleTerrainFilter
25  namespace TerrainFilter
26  {
27  /// Options of \ref ModuleTerrainFilter
28  using Options =
29  IGroup< Names::_, false,
43  >,
55  >,
57  >;
58  }
59  }
60 
61  /// Classifies a 3D point cloud (ODM) into terrain and off-terrain points.
62  /** TODO:
63  More details on opalsTerrainFilter with much more words,
64  possibly on several lines. */
65  /// \see \ref ModuleTerrainFilter
66  class OPALS_API ITerrainFilter : virtual public IModuleBase
67  {
68 
69  public:
70  static ITerrainFilter* New();
71  static ITerrainFilter* New( IControlObject &controlObject );
72  static ITerrainFilter* New( const IModuleBase &parent );
73  static ITerrainFilter* New( const IModuleBase &parent, IControlObject &controlObject );
74 
75  virtual ~ITerrainFilter() {}
76 
77  /// \name Access to module-specific options.
78  ///@{
80  virtual Options& opts() = 0;
81  virtual const Options& opts() const = 0;
82  ///@}
83 
84  };
85 
86 }
@ sigmaApriori
estimated accuracy of observations before adjustment (opalsRobFilter)
Leaf that holds a read-only value.
Definition: IOption.hpp:63
IGroup< Names::_, false, ILeaf< Names::inFile, false, Path >, ILeaf< Names::method, false, TerrainFilterMethod >, ILeaf< Names::limit, false, GridLimit >, ILeaf< Names::filter, false, String >, ILeaf< Names::tempDirectory, false, Path >, ILeaf< Names::deleteTempData, false, bool >, ILeaf< Names::debugOutFile, false, Path >, ILeaf< Names::writeFilterInfo, false, bool >, IGroup< Names::sigmaApriori, false, ILeaf< Names::bulkPoints, false, String >, ILeaf< Names::keyPoints, false, String >, ILeaf< Names::formLines, false, String >, ILeaf< Names::breakLines, false, String > >, IGroup< Names::robustInterpolation, false, ILeaf< Names::gridSize, false, double >, ILeaf< Names::pyramidLevels, false, unsigned >, ILeaf< Names::feature, false, Vector< DM::StatFeature > >, ILeaf< Names::filterThresholds, false, Vector< double > >, ILeaf< Names::lowerThresholdScale, false, double >, ILeaf< Names::maxSigma, false, double >, ILeaf< Names::penetration, false, unsigned >, ILeaf< Names::maxIter, false, unsigned >, ILeaf< Names::tileSize, false, unsigned >, ILeaf< Names::robustWFAdpation, false, String > >, ILeaf< Names::classifyOverlap, false, bool > > Options
Options of Module TerrainFilter.
Definition: ITerrainFilter.hpp:57
Contains the public interface of OPALS.
Definition: AbsValueOrQuantile.hpp:8
Classifies a 3D point cloud (ODM) into terrain and off-terrain points.
Definition: ITerrainFilter.hpp:66
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
@ robustInterpolation
group of specific parameters for robust interpolation (opalsTerrainFilter)
A group of options.
Definition: IOption.hpp:108