IGridMerge.hpp
1 #pragma once
2 
3 #include <opals/IModuleBase.hpp>
4 #include <opals/String.hpp>
5 #include <opals/Path.hpp>
6 #include <opals/Array.hpp>
7 #include <opals/Vector.hpp>
8 #include <opals/ResamplingMethod.hpp>
9 #include <opals/MultiGridLimit.hpp>
10 
11 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
12  #if defined _DEBUG && !defined OPALS_NO_DEBUG
13  #pragma comment(lib, "opalsGridMerge_d.lib")
14  #else
15  #pragma comment(lib, "opalsGridMerge.lib")
16  #endif
17 #endif
18 
19 namespace opals {
20 
21  namespace opts
22  {
23  /// Options of \ref ModuleGridMerge
24  namespace GridMerge
25  {
26  /// Options of \ref ModuleGridMerge
27  using Options =
28  IGroup< Names::_,
44  >
45  >;
46  }
47  }
48 
49  /// Merging multi raster files with different resolutions and accuracies into one continuous file
50  /** TODO:
51  More details on module GridMerge with much more words,
52  possibly on several lines. */
53  /// \see \ref ModuleGridMerge
54  class OPALS_API IGridMerge : virtual public IModuleBase
55  {
56 
57  public:
58  static IGridMerge* New();
59  static IGridMerge* New( IControlObject &controlObject );
60  static IGridMerge* New( const IModuleBase &parent );
61  static IGridMerge* New( const IModuleBase &parent, IControlObject &controlObject );
62 
63  virtual ~IGridMerge() {}
64 
65  /// \name Access to module-specific options.
66  ///@{
68  Options& opts() override = 0;
69  const Options& opts() const override = 0;
70  ///@}
71 
72  };
73 
74 };
Merging multi raster files with different resolutions and accuracies into one continuous file.
Definition: IGridMerge.hpp:54
A leaf that holds a value.
Definition: IOption.hpp:62
@ byproduct
optional output that is not the central result of a module run (opalsSegmentation: segment odm repres...
Contains the public interface of OPALS.
Definition: AbsValueOrQuantile.hpp:8
IGroup< Names::_, IValue< Names::inFile, false, Vector< Path > >, IValue< Names::outFile, false, Path >, IValue< Names::oFormat, false, String >, IValue< Names::gridSize, false, Vector< double > >, IValue< Names::sigmaApriori, false, Vector< double > >, IValue< Names::mergeWidth, false, double >, IValue< Names::mergeFunc, false, String >, IValue< Names::nonOverlapMerge, false, bool >, IValue< Names::activateBorderMerge, false, bool >, IValue< Names::limit, false, MultiGridLimit >, IValue< Names::resampling, false, ResamplingMethod >, IGroup< Names::byproduct, IValue< Names::processStructure, false, Path >, IValue< Names::weighting, false, Path >, IValue< Names::deviation, false, Path > > > Options
Options of Module GridMerge.
Definition: IGridMerge.hpp:45
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