Loading [MathJax]/extensions/tex2jax.js
IICP.hpp
1 #pragma once
2 
3 #include <opals/IModuleBase.hpp>
4 #include <opals/Path.hpp>
5 #include <opals/Vector.hpp>
6 #include <opals/TrafPars3dAffine.hpp>
7 #include <opals/LSMTrafoType.hpp>
8 
9 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
10  #if defined _DEBUG && !defined OPALS_NO_DEBUG
11  #pragma comment(lib, "opalsICP_d.lib")
12  #else
13  #pragma comment(lib, "opalsICP.lib")
14  #endif
15 #endif
16 
17 namespace opals {
18 
19  namespace opts
20  {
21  /// Options of \ref ModuleICP
22  namespace ICP
23  {
24  /// Options of \ref ModuleICP
25  using Options =
26  IGroup< Names::_,
49  >
50  >;
51  }
52  }
53 
54  /// Performs orientation (co-registration) of multiple point cloud datasets using the Iterative Closest Point algorithm.
55  /** TODO:
56  More details on opalsICP with much more words,
57  possibly on several lines. */
58  /// \see \ref ModuleICP
59  class OPALS_API IICP : virtual public IModuleBase
60  {
61 
62  public:
63  static IICP* New();
64  static IICP* New( IControlObject &controlObject );
65  static IICP* New( const IModuleBase &parent );
66  static IICP* New( const IModuleBase &parent, IControlObject &controlObject );
67 
68  virtual ~IICP() {}
69 
70  /// \name Access to module-specific options.
71  ///@{
73  Options& opts() override = 0;
74  const Options& opts() const override = 0;
75  ///@}
76 
77  };
78 
79 };
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
Abstract base class of all opals modules.
Definition: IModuleBase.hpp:13
IGroup< Names::_, IValue< Names::inFile, false, Vector< Path > >, IValue< Names::redPoint, false, Array< double, 3 > >, IValue< Names::filter, false, String >, IValue< Names::outDirectory, false, Path >, IValue< Names::tempDirectory, false, Path >, IValue< Names::trafoType, false, LSMTrafoType >, IValue< Names::fixedFile, false, Vector< Path > >, IValue< Names::voxelSize, false, double >, IValue< Names::samplingDist, false, Vector< double > >, IValue< Names::searchRadius, false, double >, IValue< Names::maxIter, false, int >, IValue< Names::subsetRadius, false, double >, IValue< Names::maxDist, false, double >, IValue< Names::maxSigma, false, double >, IValue< Names::maxAngleDev, false, double >, IValue< Names::normalSpaceSampling, false, double >, IValue< Names::maxLeverageSampling, false, double >, IValue< Names::plot, false, bool >, IValue< Names::transformData, false, bool >, IValue< Names::outTrafPars, true, Vector< TrafPars3dAffine > >, IGroup< Names::byproduct, IValue< Names::correspondences, false, bool > > > Options
Options of Module ICP.
Definition: IICP.hpp:50
Interface for retrieving status and progress information from a module run.
Definition: c++_api/inc/opals/IControlObject.hpp:30
Performs orientation (co-registration) of multiple point cloud datasets using the Iterative Closest P...
Definition: IICP.hpp:59
A group of options.
Definition: IOption.hpp:136