Loading [MathJax]/extensions/tex2jax.js
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 #include <opals/Calculator.hpp>
11 
12 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
13  #if defined _DEBUG && !defined OPALS_NO_DEBUG
14  #pragma comment(lib, "opalsTerrainFilter_d.lib")
15  #else
16  #pragma comment(lib, "opalsTerrainFilter.lib")
17  #endif
18 #endif
19 
20 namespace opals
21 {
22 
23  namespace opts
24  {
25  /// Options of \ref ModuleTerrainFilter
26  namespace TerrainFilter
27  {
28  /// Options of \ref ModuleTerrainFilter
29  using Options =
30  IGroup< Names::_,
44  >,
56  >,
59  >;
60  }
61  }
62 
63  /// Classifies a 3D point cloud (ODM) into terrain and off-terrain points.
64  /** TODO:
65  More details on opalsTerrainFilter with much more words,
66  possibly on several lines. */
67  /// \see \ref ModuleTerrainFilter
68  class OPALS_API ITerrainFilter : virtual public IModuleBase
69  {
70 
71  public:
72  static ITerrainFilter* New();
73  static ITerrainFilter* New( IControlObject &controlObject );
74  static ITerrainFilter* New( const IModuleBase &parent );
75  static ITerrainFilter* New( const IModuleBase &parent, IControlObject &controlObject );
76 
77  virtual ~ITerrainFilter() {}
78 
79  /// \name Access to module-specific options.
80  ///@{
82  Options& opts() override = 0;
83  const Options& opts() const override = 0;
84  ///@}
85 
86  };
87 
88 }
A leaf that holds a value.
Definition: IOption.hpp:62
@ sigmaApriori
estimated accuracy of observations before adjustment (opalsRobFilter)
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:68
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:136
IGroup< Names::_, IValue< Names::inFile, false, Path >, IValue< Names::method, false, TerrainFilterMethod >, IValue< Names::limit, false, GridLimit >, IValue< Names::filter, false, String >, IValue< Names::tempDirectory, false, Path >, IValue< Names::deleteTempData, false, bool >, IValue< Names::debugOutFile, false, Path >, IValue< Names::writeFilterInfo, false, bool >, IGroup< Names::sigmaApriori, IValue< Names::bulkPoints, false, String >, IValue< Names::keyPoints, false, String >, IValue< Names::formLines, false, String >, IValue< Names::breakLines, false, String > >, IGroup< Names::robustInterpolation, IValue< Names::gridSize, false, double >, IValue< Names::pyramidLevels, false, unsigned >, IValue< Names::feature, false, Vector< DM::StatFeature > >, IValue< Names::filterThresholds, false, Vector< double > >, IValue< Names::lowerThresholdScale, false, double >, IValue< Names::maxSigma, false, double >, IValue< Names::penetration, false, unsigned >, IValue< Names::maxIter, false, unsigned >, IValue< Names::tileSize, false, unsigned >, IValue< Names::robustWFAdpation, false, String > >, IValue< Names::classifyOverlap, false, bool >, IValue< Names::setAttribute, false, Calculator< DM::ICalculator::ReadAccess::vectors, DM::ICalculator::WriteAccess::attributes > > > Options
Options of Module TerrainFilter.
Definition: ITerrainFilter.hpp:59